| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122 |
- /*
- * Copyright (C) 2014 BlueKitchen GmbH
- *
- * 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 holders nor the names of
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * 4. Any redistribution, use, or modification is done solely for
- * personal benefit and not for any commercial purpose or for
- * monetary gain.
- *
- * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH 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 MATTHIAS
- * RINGWALD 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.
- *
- * Please inquire about commercial licensing options at
- * contact@bluekitchen-gmbh.com
- *
- */
- #define BTSTACK_FILE__ "l2cap.c"
- /*
- * l2cap.c
- *
- * Logical Link Control and Adaption Protocl (L2CAP)
- *
- * Created by Matthias Ringwald on 5/16/09.
- */
- #include "l2cap.h"
- #include "hci.h"
- #include "hci_dump.h"
- #include "bluetooth_sdp.h"
- #include "bluetooth_psm.h"
- #include "btstack_bool.h"
- #include "btstack_debug.h"
- #include "btstack_event.h"
- #include "btstack_memory.h"
- #include <stdarg.h>
- #include <string.h>
- /*
- * @brief L2CAP Supervisory function in S-Frames
- */
- typedef enum {
- L2CAP_SUPERVISORY_FUNCTION_RR_RECEIVER_READY = 0,
- L2CAP_SUPERVISORY_FUNCTION_REJ_REJECT,
- L2CAP_SUPERVISORY_FUNCTION_RNR_RECEIVER_NOT_READY,
- L2CAP_SUPERVISORY_FUNCTION_SREJ_SELECTIVE_REJECT
- } l2cap_supervisory_function_t;
- /**
- * @brief L2CAP Information Types used in Information Request & Response
- */
- typedef enum {
- L2CAP_INFO_TYPE_CONNECTIONLESS_MTU = 1,
- L2CAP_INFO_TYPE_EXTENDED_FEATURES_SUPPORTED,
- L2CAP_INFO_TYPE_FIXED_CHANNELS_SUPPORTED,
- } l2cap_info_type_t;
- /**
- * @brief L2CAP Configuration Option Types used in Configurateion Request & Response
- */
- typedef enum {
- L2CAP_CONFIG_OPTION_TYPE_MAX_TRANSMISSION_UNIT = 1,
- L2CAP_CONFIG_OPTION_TYPE_FLUSH_TIMEOUT,
- L2CAP_CONFIG_OPTION_TYPE_QUALITY_OF_SERVICE,
- L2CAP_CONFIG_OPTION_TYPE_RETRANSMISSION_AND_FLOW_CONTROL,
- L2CAP_CONFIG_OPTION_TYPE_FRAME_CHECK_SEQUENCE,
- L2CAP_CONFIG_OPTION_TYPE_EXTENDED_FLOW_SPECIFICATION,
- L2CAP_CONFIG_OPTION_TYPE_EXTENDED_WINDOW_SIZE,
- } l2cap_config_option_type_t;
- #define L2CAP_SIG_ID_INVALID 0
- // size of HCI ACL + L2CAP Header for regular data packets (8)
- #define COMPLETE_L2CAP_HEADER (HCI_ACL_HEADER_SIZE + L2CAP_HEADER_SIZE)
- // L2CAP Configuration Result Codes
- #define L2CAP_CONF_RESULT_SUCCESS 0x0000
- #define L2CAP_CONF_RESULT_UNACCEPTABLE_PARAMETERS 0x0001
- #define L2CAP_CONF_RESULT_REJECT 0x0002
- #define L2CAP_CONF_RESULT_UNKNOWN_OPTIONS 0x0003
- #define L2CAP_CONF_RESULT_PENDING 0x0004
- #define L2CAP_CONF_RESULT_FLOW_SPEC_REJECTED 0x0005
- // L2CAP Reject Result Codes
- #define L2CAP_REJ_CMD_UNKNOWN 0x0000
-
- // Response Timeout eXpired
- #define L2CAP_RTX_TIMEOUT_MS 10000
- // Extended Response Timeout eXpired
- #define L2CAP_ERTX_TIMEOUT_MS 120000
- // nr of buffered acl packets in outgoing queue to get max performance
- #define NR_BUFFERED_ACL_PACKETS 3
- // used to cache l2cap rejects, echo, and informational requests
- #define NR_PENDING_SIGNALING_RESPONSES 3
- // nr of credits provided to remote if credits fall below watermark
- #define L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_WATERMARK 5
- #define L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_INCREMENT 5
- // offsets for L2CAP SIGNALING COMMANDS
- #define L2CAP_SIGNALING_COMMAND_CODE_OFFSET 0
- #define L2CAP_SIGNALING_COMMAND_SIGID_OFFSET 1
- #define L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET 2
- #define L2CAP_SIGNALING_COMMAND_DATA_OFFSET 4
- #if defined(ENABLE_LE_DATA_CHANNELS) || defined(ENABLE_CLASSIC)
- #define L2CAP_USES_CHANNELS
- #endif
- // prototypes
- static void l2cap_run(void);
- static void l2cap_hci_event_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
- static void l2cap_acl_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size );
- static void l2cap_notify_channel_can_send(void);
- static void l2cap_emit_can_send_now(btstack_packet_handler_t packet_handler, uint16_t channel);
- static uint8_t l2cap_next_sig_id(void);
- static l2cap_fixed_channel_t * l2cap_fixed_channel_for_channel_id(uint16_t local_cid);
- #ifdef ENABLE_CLASSIC
- static void l2cap_handle_remote_supported_features_received(l2cap_channel_t * channel);
- static void l2cap_handle_connection_complete(hci_con_handle_t con_handle, l2cap_channel_t * channel);
- static void l2cap_finialize_channel_close(l2cap_channel_t *channel);
- static inline l2cap_service_t * l2cap_get_service(uint16_t psm);
- static void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status);
- static void l2cap_emit_channel_closed(l2cap_channel_t *channel);
- static void l2cap_emit_incoming_connection(l2cap_channel_t *channel);
- static int l2cap_channel_ready_for_open(l2cap_channel_t *channel);
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- static void l2cap_emit_le_channel_opened(l2cap_channel_t *channel, uint8_t status);
- static void l2cap_emit_le_channel_closed(l2cap_channel_t * channel);
- static void l2cap_emit_le_incoming_connection(l2cap_channel_t *channel);
- static void l2cap_le_notify_channel_can_send(l2cap_channel_t *channel);
- static void l2cap_le_finialize_channel_close(l2cap_channel_t *channel);
- static void l2cap_le_send_pdu(l2cap_channel_t *channel);
- static inline l2cap_service_t * l2cap_le_get_service(uint16_t psm);
- #endif
- #ifdef L2CAP_USES_CHANNELS
- static uint16_t l2cap_next_local_cid(void);
- static l2cap_channel_t * l2cap_get_channel_for_local_cid(uint16_t local_cid);
- static void l2cap_emit_simple_event_with_cid(l2cap_channel_t * channel, uint8_t event_code);
- static void l2cap_dispatch_to_channel(l2cap_channel_t *channel, uint8_t type, uint8_t * data, uint16_t size);
- static l2cap_channel_t * l2cap_get_channel_for_local_cid(uint16_t local_cid);
- static l2cap_channel_t * l2cap_create_channel_entry(btstack_packet_handler_t packet_handler, l2cap_channel_type_t channel_type, bd_addr_t address, bd_addr_type_t address_type,
- uint16_t psm, uint16_t local_mtu, gap_security_level_t security_level);
- static void l2cap_free_channel_entry(l2cap_channel_t * channel);
- #endif
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- static void l2cap_ertm_notify_channel_can_send(l2cap_channel_t * channel);
- static void l2cap_ertm_monitor_timeout_callback(btstack_timer_source_t * ts);
- static void l2cap_ertm_retransmission_timeout_callback(btstack_timer_source_t * ts);
- #endif
- // l2cap_fixed_channel_t entries
- #ifdef ENABLE_BLE
- static l2cap_fixed_channel_t l2cap_fixed_channel_att;
- static l2cap_fixed_channel_t l2cap_fixed_channel_sm;
- #endif
- #ifdef ENABLE_CLASSIC
- static l2cap_fixed_channel_t l2cap_fixed_channel_connectionless;
- #endif
- #ifdef ENABLE_CLASSIC
- static btstack_linked_list_t l2cap_services;
- static uint8_t require_security_level2_for_outgoing_sdp;
- static bd_addr_t l2cap_outgoing_classic_addr;
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- static btstack_linked_list_t l2cap_le_services;
- #endif
- // single list of channels for Classic Channels, LE Data Channels, Classic Connectionless, ATT, and SM
- static btstack_linked_list_t l2cap_channels;
- #ifdef L2CAP_USES_CHANNELS
- // next channel id for new connections
- static uint16_t local_source_cid = 0x40;
- #endif
- // next signaling sequence number
- static uint8_t sig_seq_nr = 0xff;
- // used to cache l2cap rejects, echo, and informational requests
- static l2cap_signaling_response_t signaling_responses[NR_PENDING_SIGNALING_RESPONSES];
- static int signaling_responses_pending;
- static btstack_packet_callback_registration_t hci_event_callback_registration;
- #ifdef ENABLE_BLE
- // only used for connection parameter update events
- static btstack_packet_handler_t l2cap_event_packet_handler;
- static uint16_t l2cap_le_custom_max_mtu;
- #endif
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // enable for testing
- // #define L2CAP_ERTM_SIMULATE_FCS_ERROR_INTERVAL 16
- /*
- * CRC lookup table for generator polynom D^16 + D^15 + D^2 + 1
- */
- static const uint16_t crc16_table[256] = {
- 0x0000, 0xc0c1, 0xc181, 0x0140, 0xc301, 0x03c0, 0x0280, 0xc241, 0xc601, 0x06c0, 0x0780, 0xc741, 0x0500, 0xc5c1, 0xc481, 0x0440,
- 0xcc01, 0x0cc0, 0x0d80, 0xcd41, 0x0f00, 0xcfc1, 0xce81, 0x0e40, 0x0a00, 0xcac1, 0xcb81, 0x0b40, 0xc901, 0x09c0, 0x0880, 0xc841,
- 0xd801, 0x18c0, 0x1980, 0xd941, 0x1b00, 0xdbc1, 0xda81, 0x1a40, 0x1e00, 0xdec1, 0xdf81, 0x1f40, 0xdd01, 0x1dc0, 0x1c80, 0xdc41,
- 0x1400, 0xd4c1, 0xd581, 0x1540, 0xd701, 0x17c0, 0x1680, 0xd641, 0xd201, 0x12c0, 0x1380, 0xd341, 0x1100, 0xd1c1, 0xd081, 0x1040,
- 0xf001, 0x30c0, 0x3180, 0xf141, 0x3300, 0xf3c1, 0xf281, 0x3240, 0x3600, 0xf6c1, 0xf781, 0x3740, 0xf501, 0x35c0, 0x3480, 0xf441,
- 0x3c00, 0xfcc1, 0xfd81, 0x3d40, 0xff01, 0x3fc0, 0x3e80, 0xfe41, 0xfa01, 0x3ac0, 0x3b80, 0xfb41, 0x3900, 0xf9c1, 0xf881, 0x3840,
- 0x2800, 0xe8c1, 0xe981, 0x2940, 0xeb01, 0x2bc0, 0x2a80, 0xea41, 0xee01, 0x2ec0, 0x2f80, 0xef41, 0x2d00, 0xedc1, 0xec81, 0x2c40,
- 0xe401, 0x24c0, 0x2580, 0xe541, 0x2700, 0xe7c1, 0xe681, 0x2640, 0x2200, 0xe2c1, 0xe381, 0x2340, 0xe101, 0x21c0, 0x2080, 0xe041,
- 0xa001, 0x60c0, 0x6180, 0xa141, 0x6300, 0xa3c1, 0xa281, 0x6240, 0x6600, 0xa6c1, 0xa781, 0x6740, 0xa501, 0x65c0, 0x6480, 0xa441,
- 0x6c00, 0xacc1, 0xad81, 0x6d40, 0xaf01, 0x6fc0, 0x6e80, 0xae41, 0xaa01, 0x6ac0, 0x6b80, 0xab41, 0x6900, 0xa9c1, 0xa881, 0x6840,
- 0x7800, 0xb8c1, 0xb981, 0x7940, 0xbb01, 0x7bc0, 0x7a80, 0xba41, 0xbe01, 0x7ec0, 0x7f80, 0xbf41, 0x7d00, 0xbdc1, 0xbc81, 0x7c40,
- 0xb401, 0x74c0, 0x7580, 0xb541, 0x7700, 0xb7c1, 0xb681, 0x7640, 0x7200, 0xb2c1, 0xb381, 0x7340, 0xb101, 0x71c0, 0x7080, 0xb041,
- 0x5000, 0x90c1, 0x9181, 0x5140, 0x9301, 0x53c0, 0x5280, 0x9241, 0x9601, 0x56c0, 0x5780, 0x9741, 0x5500, 0x95c1, 0x9481, 0x5440,
- 0x9c01, 0x5cc0, 0x5d80, 0x9d41, 0x5f00, 0x9fc1, 0x9e81, 0x5e40, 0x5a00, 0x9ac1, 0x9b81, 0x5b40, 0x9901, 0x59c0, 0x5880, 0x9841,
- 0x8801, 0x48c0, 0x4980, 0x8941, 0x4b00, 0x8bc1, 0x8a81, 0x4a40, 0x4e00, 0x8ec1, 0x8f81, 0x4f40, 0x8d01, 0x4dc0, 0x4c80, 0x8c41,
- 0x4400, 0x84c1, 0x8581, 0x4540, 0x8701, 0x47c0, 0x4680, 0x8641, 0x8201, 0x42c0, 0x4380, 0x8341, 0x4100, 0x81c1, 0x8081, 0x4040,
- };
- static uint16_t crc16_calc(uint8_t * data, uint16_t len){
- uint16_t crc = 0; // initial value = 0
- while (len--){
- crc = (crc >> 8) ^ crc16_table[ (crc ^ ((uint16_t) *data++)) & 0x00FF ];
- }
- return crc;
- }
- static inline uint16_t l2cap_encanced_control_field_for_information_frame(uint8_t tx_seq, int final, uint8_t req_seq, l2cap_segmentation_and_reassembly_t sar){
- return (((uint16_t) sar) << 14) | (req_seq << 8) | (final << 7) | (tx_seq << 1) | 0;
- }
- static inline uint16_t l2cap_encanced_control_field_for_supevisor_frame(l2cap_supervisory_function_t supervisory_function, int poll, int final, uint8_t req_seq){
- return (req_seq << 8) | (final << 7) | (poll << 4) | (((int) supervisory_function) << 2) | 1;
- }
- static int l2cap_next_ertm_seq_nr(int seq_nr){
- return (seq_nr + 1) & 0x3f;
- }
- static int l2cap_ertm_can_store_packet_now(l2cap_channel_t * channel){
- // get num free tx buffers
- int num_free_tx_buffers = channel->num_tx_buffers - channel->num_stored_tx_frames;
- // calculate num tx buffers for remote MTU
- int num_tx_buffers_for_max_remote_mtu;
- uint16_t effective_mps = btstack_min(channel->remote_mps, channel->local_mps);
- if (channel->remote_mtu <= effective_mps){
- // MTU fits into single packet
- num_tx_buffers_for_max_remote_mtu = 1;
- } else {
- // include SDU Length
- num_tx_buffers_for_max_remote_mtu = (channel->remote_mtu + 2 + (effective_mps - 1)) / effective_mps;
- }
- log_debug("num_free_tx_buffers %u, num_tx_buffers_for_max_remote_mtu %u", num_free_tx_buffers, num_tx_buffers_for_max_remote_mtu);
- return num_tx_buffers_for_max_remote_mtu <= num_free_tx_buffers;
- }
- static void l2cap_ertm_retransmit_unacknowleded_frames(l2cap_channel_t * l2cap_channel){
- log_info("Retransmit unacknowleged frames");
- l2cap_channel->unacked_frames = 0;;
- l2cap_channel->tx_send_index = l2cap_channel->tx_read_index;
- }
- static void l2cap_ertm_next_tx_write_index(l2cap_channel_t * channel){
- channel->tx_write_index++;
- if (channel->tx_write_index < channel->num_tx_buffers) return;
- channel->tx_write_index = 0;
- }
- static void l2cap_ertm_start_monitor_timer(l2cap_channel_t * channel){
- log_info("Start Monitor timer");
- btstack_run_loop_remove_timer(&channel->monitor_timer);
- btstack_run_loop_set_timer_handler(&channel->monitor_timer, &l2cap_ertm_monitor_timeout_callback);
- btstack_run_loop_set_timer_context(&channel->monitor_timer, channel);
- btstack_run_loop_set_timer(&channel->monitor_timer, channel->local_monitor_timeout_ms);
- btstack_run_loop_add_timer(&channel->monitor_timer);
- }
- static void l2cap_ertm_stop_monitor_timer(l2cap_channel_t * channel){
- log_info("Stop Monitor timer");
- btstack_run_loop_remove_timer(&channel->monitor_timer);
- }
- static void l2cap_ertm_start_retransmission_timer(l2cap_channel_t * channel){
- log_info("Start Retransmission timer");
- btstack_run_loop_remove_timer(&channel->retransmission_timer);
- btstack_run_loop_set_timer_handler(&channel->retransmission_timer, &l2cap_ertm_retransmission_timeout_callback);
- btstack_run_loop_set_timer_context(&channel->retransmission_timer, channel);
- btstack_run_loop_set_timer(&channel->retransmission_timer, channel->local_retransmission_timeout_ms);
- btstack_run_loop_add_timer(&channel->retransmission_timer);
- }
- static void l2cap_ertm_stop_retransmission_timer(l2cap_channel_t * l2cap_channel){
- log_info("Stop Retransmission timer");
- btstack_run_loop_remove_timer(&l2cap_channel->retransmission_timer);
- }
- static void l2cap_ertm_monitor_timeout_callback(btstack_timer_source_t * ts){
- log_info("Monitor timeout");
- l2cap_channel_t * l2cap_channel = (l2cap_channel_t *) btstack_run_loop_get_timer_context(ts);
- // TODO: we assume that it's the oldest packet
- l2cap_ertm_tx_packet_state_t * tx_state;
- tx_state = &l2cap_channel->tx_packets_state[l2cap_channel->tx_read_index];
- // check retry count
- if (tx_state->retry_count < l2cap_channel->remote_max_transmit){
- // increment retry count
- tx_state->retry_count++;
- // start retransmit
- l2cap_ertm_retransmit_unacknowleded_frames(l2cap_channel);
- // start monitor timer
- l2cap_ertm_start_monitor_timer(l2cap_channel);
- // send RR/P=1
- l2cap_channel->send_supervisor_frame_receiver_ready_poll = 1;
- } else {
- log_info("Monitor timer expired & retry count >= max transmit -> disconnect");
- l2cap_channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- }
- l2cap_run();
- }
- static void l2cap_ertm_retransmission_timeout_callback(btstack_timer_source_t * ts){
- log_info("Retransmission timeout");
- l2cap_channel_t * l2cap_channel = (l2cap_channel_t *) btstack_run_loop_get_timer_context(ts);
-
- // TODO: we assume that it's the oldest packet
- l2cap_ertm_tx_packet_state_t * tx_state;
- tx_state = &l2cap_channel->tx_packets_state[l2cap_channel->tx_read_index];
- // set retry count = 1
- tx_state->retry_count = 1;
- // start retransmit
- l2cap_ertm_retransmit_unacknowleded_frames(l2cap_channel);
- // start monitor timer
- l2cap_ertm_start_monitor_timer(l2cap_channel);
-
- // send RR/P=1
- l2cap_channel->send_supervisor_frame_receiver_ready_poll = 1;
- l2cap_run();
- }
- static int l2cap_ertm_send_information_frame(l2cap_channel_t * channel, int index, int final){
- l2cap_ertm_tx_packet_state_t * tx_state = &channel->tx_packets_state[index];
- hci_reserve_packet_buffer();
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
- uint16_t control = l2cap_encanced_control_field_for_information_frame(tx_state->tx_seq, final, channel->req_seq, tx_state->sar);
- log_info("I-Frame: control 0x%04x", control);
- little_endian_store_16(acl_buffer, 8, control);
- (void)memcpy(&acl_buffer[8 + 2],
- &channel->tx_packets_data[index * channel->local_mps],
- tx_state->len);
- // (re-)start retransmission timer on
- l2cap_ertm_start_retransmission_timer(channel);
- // send
- return l2cap_send_prepared(channel->local_cid, 2 + tx_state->len);
- }
- static void l2cap_ertm_store_fragment(l2cap_channel_t * channel, l2cap_segmentation_and_reassembly_t sar, uint16_t sdu_length, uint8_t * data, uint16_t len){
- // get next index for storing packets
- int index = channel->tx_write_index;
- l2cap_ertm_tx_packet_state_t * tx_state = &channel->tx_packets_state[index];
- tx_state->tx_seq = channel->next_tx_seq;
- tx_state->sar = sar;
- tx_state->retry_count = 0;
- uint8_t * tx_packet = &channel->tx_packets_data[index * channel->local_mps];
- log_debug("index %u, local mps %u, remote mps %u, packet tx %p, len %u", index, channel->local_mps, channel->remote_mps, tx_packet, len);
- int pos = 0;
- if (sar == L2CAP_SEGMENTATION_AND_REASSEMBLY_START_OF_L2CAP_SDU){
- little_endian_store_16(tx_packet, 0, sdu_length);
- pos += 2;
- }
- (void)memcpy(&tx_packet[pos], data, len);
- tx_state->len = pos + len;
- // update
- channel->num_stored_tx_frames++;
- channel->next_tx_seq = l2cap_next_ertm_seq_nr(channel->next_tx_seq);
- l2cap_ertm_next_tx_write_index(channel);
- log_info("l2cap_ertm_store_fragment: tx_read_index %u, tx_write_index %u, num stored %u", channel->tx_read_index, channel->tx_write_index, channel->num_stored_tx_frames);
- }
- static int l2cap_ertm_send(l2cap_channel_t * channel, uint8_t * data, uint16_t len){
- if (len > channel->remote_mtu){
- log_error("l2cap_ertm_send cid 0x%02x, data length exceeds remote MTU.", channel->local_cid);
- return L2CAP_DATA_LEN_EXCEEDS_REMOTE_MTU;
- }
- if (!l2cap_ertm_can_store_packet_now(channel)){
- log_error("l2cap_ertm_send cid 0x%02x, fragment store full", channel->local_cid);
- return BTSTACK_ACL_BUFFERS_FULL;
- }
- // check if it needs to get fragmented
- uint16_t effective_mps = btstack_min(channel->remote_mps, channel->local_mps);
- if (len > effective_mps){
- // fragmentation needed.
- l2cap_segmentation_and_reassembly_t sar = L2CAP_SEGMENTATION_AND_REASSEMBLY_START_OF_L2CAP_SDU;
- int chunk_len;
- while (len){
- switch (sar){
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_START_OF_L2CAP_SDU:
- chunk_len = effective_mps - 2; // sdu_length
- l2cap_ertm_store_fragment(channel, sar, len, data, chunk_len);
- len -= chunk_len;
- sar = L2CAP_SEGMENTATION_AND_REASSEMBLY_CONTINUATION_OF_L2CAP_SDU;
- break;
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_CONTINUATION_OF_L2CAP_SDU:
- chunk_len = effective_mps;
- if (chunk_len >= len){
- sar = L2CAP_SEGMENTATION_AND_REASSEMBLY_END_OF_L2CAP_SDU;
- chunk_len = len;
- }
- l2cap_ertm_store_fragment(channel, sar, len, data, chunk_len);
- len -= chunk_len;
- break;
- default:
- break;
- }
- }
- } else {
- l2cap_ertm_store_fragment(channel, L2CAP_SEGMENTATION_AND_REASSEMBLY_UNSEGMENTED_L2CAP_SDU, 0, data, len);
- }
- // try to send
- l2cap_notify_channel_can_send();
- return 0;
- }
- static uint16_t l2cap_setup_options_ertm_request(l2cap_channel_t * channel, uint8_t * config_options){
- int pos = 0;
- config_options[pos++] = L2CAP_CONFIG_OPTION_TYPE_RETRANSMISSION_AND_FLOW_CONTROL;
- config_options[pos++] = 9; // length
- config_options[pos++] = (uint8_t) channel->mode;
- config_options[pos++] = channel->num_rx_buffers; // == TxWindows size
- config_options[pos++] = channel->local_max_transmit;
- little_endian_store_16( config_options, pos, channel->local_retransmission_timeout_ms);
- pos += 2;
- little_endian_store_16( config_options, pos, channel->local_monitor_timeout_ms);
- pos += 2;
- little_endian_store_16( config_options, pos, channel->local_mps);
- pos += 2;
- //
- config_options[pos++] = L2CAP_CONFIG_OPTION_TYPE_MAX_TRANSMISSION_UNIT;
- config_options[pos++] = 2; // length
- little_endian_store_16(config_options, pos, channel->local_mtu);
- pos += 2;
- // Issue: iOS (e.g. 10.2) uses "No FCS" as default while Core 5.0 specifies "FCS" as default
- // Workaround: try to actively negotiate FCS option
- config_options[pos++] = L2CAP_CONFIG_OPTION_TYPE_FRAME_CHECK_SEQUENCE;
- config_options[pos++] = 1; // length
- config_options[pos++] = channel->fcs_option;
- return pos; // 11+4+3=18
- }
- static uint16_t l2cap_setup_options_ertm_response(l2cap_channel_t * channel, uint8_t * config_options){
- int pos = 0;
- config_options[pos++] = L2CAP_CONFIG_OPTION_TYPE_RETRANSMISSION_AND_FLOW_CONTROL;
- config_options[pos++] = 9; // length
- config_options[pos++] = (uint8_t) channel->mode;
- // less or equal to remote tx window size
- config_options[pos++] = btstack_min(channel->num_tx_buffers, channel->remote_tx_window_size);
- // max transmit in response shall be ignored -> use sender values
- config_options[pos++] = channel->remote_max_transmit;
- // A value for the Retransmission time-out shall be sent in a positive Configuration Response
- // and indicates the value that will be used by the sender of the Configuration Response -> use our value
- little_endian_store_16( config_options, pos, channel->local_retransmission_timeout_ms);
- pos += 2;
- // A value for the Monitor time-out shall be sent in a positive Configuration Response
- // and indicates the value that will be used by the sender of the Configuration Response -> use our value
- little_endian_store_16( config_options, pos, channel->local_monitor_timeout_ms);
- pos += 2;
- // less or equal to remote mps
- uint16_t effective_mps = btstack_min(channel->remote_mps, channel->local_mps);
- little_endian_store_16( config_options, pos, effective_mps);
- pos += 2;
- //
- config_options[pos++] = L2CAP_CONFIG_OPTION_TYPE_MAX_TRANSMISSION_UNIT; // MTU
- config_options[pos++] = 2; // length
- little_endian_store_16(config_options, pos, channel->remote_mtu);
- pos += 2;
- #if 0
- //
- config_options[pos++] = L2CAP_CONFIG_OPTION_TYPE_FRAME_CHECK_SEQUENCE;
- config_options[pos++] = 1; // length
- config_options[pos++] = channel->fcs_option;
- #endif
- return pos; // 11+4=15
- }
- static int l2cap_ertm_send_supervisor_frame(l2cap_channel_t * channel, uint16_t control){
- hci_reserve_packet_buffer();
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
- log_info("S-Frame: control 0x%04x", control);
- little_endian_store_16(acl_buffer, 8, control);
- return l2cap_send_prepared(channel->local_cid, 2);
- }
- static uint8_t l2cap_ertm_validate_local_config(l2cap_ertm_config_t * ertm_config){
-
- uint8_t result = ERROR_CODE_SUCCESS;
- if (ertm_config->max_transmit < 1){
- log_error("max_transmit must be >= 1");
- result = ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
- }
- if (ertm_config->retransmission_timeout_ms < 2000){
- log_error("retransmission_timeout_ms must be >= 2000 ms");
- result = ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
- }
- if (ertm_config->monitor_timeout_ms < 12000){
- log_error("monitor_timeout_ms must be >= 12000 ms");
- result = ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
- }
- if (ertm_config->local_mtu < 48){
- log_error("local_mtu must be >= 48");
- result = ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
- }
- if (ertm_config->num_rx_buffers < 1){
- log_error("num_rx_buffers must be >= 1");
- result = ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
- }
- if (ertm_config->num_tx_buffers < 1){
- log_error("num_rx_buffers must be >= 1");
- result = ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
- }
- return result;
- }
- static void l2cap_ertm_configure_channel(l2cap_channel_t * channel, l2cap_ertm_config_t * ertm_config, uint8_t * buffer, uint32_t size){
- channel->mode = L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION;
- channel->ertm_mandatory = ertm_config->ertm_mandatory;
- channel->local_max_transmit = ertm_config->max_transmit;
- channel->local_retransmission_timeout_ms = ertm_config->retransmission_timeout_ms;
- channel->local_monitor_timeout_ms = ertm_config->monitor_timeout_ms;
- channel->local_mtu = ertm_config->local_mtu;
- channel->num_rx_buffers = ertm_config->num_rx_buffers;
- channel->num_tx_buffers = ertm_config->num_tx_buffers;
- // align buffer to 16-byte boundary to assert l2cap_ertm_rx_packet_state_t is aligned
- int bytes_till_alignment = 16 - (((uintptr_t) buffer) & 0x0f);
- buffer += bytes_till_alignment;
- size -= bytes_till_alignment;
- // setup state buffers - use void cast to avoid -Wcast-align warning
- uint32_t pos = 0;
- channel->rx_packets_state = (l2cap_ertm_rx_packet_state_t *) (void *) &buffer[pos];
- pos += ertm_config->num_rx_buffers * sizeof(l2cap_ertm_rx_packet_state_t);
- channel->tx_packets_state = (l2cap_ertm_tx_packet_state_t *) (void *) &buffer[pos];
- pos += ertm_config->num_tx_buffers * sizeof(l2cap_ertm_tx_packet_state_t);
- // setup reassembly buffer
- channel->reassembly_buffer = &buffer[pos];
- pos += ertm_config->local_mtu;
- // divide rest of data equally
- channel->local_mps = (size - pos) / (ertm_config->num_rx_buffers + ertm_config->num_tx_buffers);
- log_info("Local MPS: %u", channel->local_mps);
- channel->rx_packets_data = &buffer[pos];
- pos += ertm_config->num_rx_buffers * channel->local_mps;
- channel->tx_packets_data = &buffer[pos];
- channel->fcs_option = ertm_config->fcs_option;
- }
- uint8_t l2cap_create_ertm_channel(btstack_packet_handler_t packet_handler, bd_addr_t address, uint16_t psm,
- l2cap_ertm_config_t * ertm_config, uint8_t * buffer, uint32_t size, uint16_t * out_local_cid){
- log_info("L2CAP_CREATE_ERTM_CHANNEL addr %s, psm 0x%x, local mtu %u", bd_addr_to_str(address), psm, ertm_config->local_mtu);
- // validate local config
- uint8_t result = l2cap_ertm_validate_local_config(ertm_config);
- if (result) return result;
- l2cap_channel_t * channel = l2cap_create_channel_entry(packet_handler, L2CAP_CHANNEL_TYPE_CLASSIC, address, BD_ADDR_TYPE_ACL, psm, ertm_config->local_mtu, LEVEL_0);
- if (!channel) {
- return BTSTACK_MEMORY_ALLOC_FAILED;
- }
- // configure ERTM
- l2cap_ertm_configure_channel(channel, ertm_config, buffer, size);
- // add to connections list
- btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel);
- // store local_cid
- if (out_local_cid){
- *out_local_cid = channel->local_cid;
- }
- // check if hci connection is already usable
- hci_connection_t * conn = hci_connection_for_bd_addr_and_type(address, BD_ADDR_TYPE_ACL);
- if (conn){
- log_info("l2cap_create_channel, hci connection already exists");
- l2cap_handle_connection_complete(conn->con_handle, channel);
- // check if remote supported fearures are already received
- if (conn->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) {
- l2cap_handle_remote_supported_features_received(channel);
- }
- }
- l2cap_run();
- return 0;
- }
- static void l2cap_ertm_notify_channel_can_send(l2cap_channel_t * channel){
- if (l2cap_ertm_can_store_packet_now(channel)){
- channel->waiting_for_can_send_now = 0;
- l2cap_emit_can_send_now(channel->packet_handler, channel->local_cid);
- }
- }
- uint8_t l2cap_accept_ertm_connection(uint16_t local_cid, l2cap_ertm_config_t * ertm_config, uint8_t * buffer, uint32_t size){
- log_info("L2CAP_ACCEPT_ERTM_CONNECTION local_cid 0x%x", local_cid);
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_accept_connection called but local_cid 0x%x not found", local_cid);
- return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- }
- // validate local config
- uint8_t result = l2cap_ertm_validate_local_config(ertm_config);
- if (result) return result;
- // configure L2CAP ERTM
- l2cap_ertm_configure_channel(channel, ertm_config, buffer, size);
- // default: continue
- channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT;
- // verify remote ERTM support
- hci_connection_t * connection = hci_connection_for_handle(channel->con_handle);
- if (connection == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
- if ((channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION) && ((connection->l2cap_state.extended_feature_mask & 0x08) == 0)){
- // ERTM not possible, select basic mode and release buffer
- channel->mode = L2CAP_CHANNEL_MODE_BASIC;
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_ERTM_BUFFER_RELEASED);
- // bail if ERTM is mandatory
- if (channel->ertm_mandatory){
- // We chose 'no resources available' for "ERTM mandatory but you don't even know ERTM exists"
- log_info("ERTM mandatory -> reject connection");
- channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE;
- channel->reason = 0x04; // no resources available
- } else {
- log_info("ERTM not supported by remote -> use Basic mode");
- }
- }
- // process
- l2cap_run();
- return ERROR_CODE_SUCCESS;
- }
- uint8_t l2cap_ertm_set_busy(uint16_t local_cid){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid( local_cid);
- if (!channel) {
- log_error( "l2cap_decline_connection called but local_cid 0x%x not found", local_cid);
- return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- }
- if (!channel->local_busy){
- channel->local_busy = 1;
- channel->send_supervisor_frame_receiver_not_ready = 1;
- l2cap_run();
- }
- return ERROR_CODE_SUCCESS;
- }
- uint8_t l2cap_ertm_set_ready(uint16_t local_cid){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid( local_cid);
- if (!channel) {
- log_error( "l2cap_decline_connection called but local_cid 0x%x not found", local_cid);
- return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- }
- if (channel->local_busy){
- channel->local_busy = 0;
- channel->send_supervisor_frame_receiver_ready_poll = 1;
- l2cap_run();
- }
- return ERROR_CODE_SUCCESS;
- }
- // Process-ReqSeq
- static void l2cap_ertm_process_req_seq(l2cap_channel_t * l2cap_channel, uint8_t req_seq){
- int num_buffers_acked = 0;
- l2cap_ertm_tx_packet_state_t * tx_state;
- log_info("l2cap_ertm_process_req_seq: tx_read_index %u, tx_write_index %u, req_seq %u", l2cap_channel->tx_read_index, l2cap_channel->tx_write_index, req_seq);
- while (true){
- // no unack packets left
- if (l2cap_channel->unacked_frames == 0) {
- // stop retransmission timer
- l2cap_ertm_stop_retransmission_timer(l2cap_channel);
- break;
- }
- tx_state = &l2cap_channel->tx_packets_state[l2cap_channel->tx_read_index];
- // calc delta
- int delta = (req_seq - tx_state->tx_seq) & 0x03f;
- if (delta == 0) break; // all packets acknowledged
- if (delta > l2cap_channel->remote_tx_window_size) break;
- num_buffers_acked++;
- l2cap_channel->num_stored_tx_frames--;
- l2cap_channel->unacked_frames--;
- log_info("RR seq %u => packet with tx_seq %u done", req_seq, tx_state->tx_seq);
- l2cap_channel->tx_read_index++;
- if (l2cap_channel->tx_read_index >= l2cap_channel->num_rx_buffers){
- l2cap_channel->tx_read_index = 0;
- }
- }
- if (num_buffers_acked){
- log_info("num_buffers_acked %u", num_buffers_acked);
- l2cap_ertm_notify_channel_can_send(l2cap_channel);
- }
- }
- static l2cap_ertm_tx_packet_state_t * l2cap_ertm_get_tx_state(l2cap_channel_t * l2cap_channel, uint8_t tx_seq){
- int i;
- for (i=0;i<l2cap_channel->num_tx_buffers;i++){
- l2cap_ertm_tx_packet_state_t * tx_state = &l2cap_channel->tx_packets_state[i];
- if (tx_state->tx_seq == tx_seq) return tx_state;
- }
- return NULL;
- }
- // @param delta number of frames in the future, >= 1
- // @assumption size <= l2cap_channel->local_mps (checked in l2cap_acl_classic_handler)
- static void l2cap_ertm_handle_out_of_sequence_sdu(l2cap_channel_t * l2cap_channel, l2cap_segmentation_and_reassembly_t sar, int delta, const uint8_t * payload, uint16_t size){
- log_info("Store SDU with delta %u", delta);
- // get rx state for packet to store
- int index = l2cap_channel->rx_store_index + delta - 1;
- if (index > l2cap_channel->num_rx_buffers){
- index -= l2cap_channel->num_rx_buffers;
- }
- log_info("Index of packet to store %u", index);
- l2cap_ertm_rx_packet_state_t * rx_state = &l2cap_channel->rx_packets_state[index];
- // check if buffer is free
- if (rx_state->valid){
- log_error("Packet buffer already used");
- return;
- }
- rx_state->valid = 1;
- rx_state->sar = sar;
- rx_state->len = size;
- uint8_t * rx_buffer = &l2cap_channel->rx_packets_data[index];
- (void)memcpy(rx_buffer, payload, size);
- }
- // @assumption size <= l2cap_channel->local_mps (checked in l2cap_acl_classic_handler)
- static void l2cap_ertm_handle_in_sequence_sdu(l2cap_channel_t * l2cap_channel, l2cap_segmentation_and_reassembly_t sar, const uint8_t * payload, uint16_t size){
- uint16_t reassembly_sdu_length;
- switch (sar){
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_UNSEGMENTED_L2CAP_SDU:
- // assert total packet size <= our mtu
- if (size > l2cap_channel->local_mtu) break;
- // packet complete -> disapatch
- l2cap_dispatch_to_channel(l2cap_channel, L2CAP_DATA_PACKET, (uint8_t*) payload, size);
- break;
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_START_OF_L2CAP_SDU:
- // read SDU len
- reassembly_sdu_length = little_endian_read_16(payload, 0);
- payload += 2;
- size -= 2;
- // assert reassembled size <= our mtu
- if (reassembly_sdu_length > l2cap_channel->local_mtu) break;
- // store start segment
- l2cap_channel->reassembly_sdu_length = reassembly_sdu_length;
- (void)memcpy(&l2cap_channel->reassembly_buffer[0], payload, size);
- l2cap_channel->reassembly_pos = size;
- break;
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_CONTINUATION_OF_L2CAP_SDU:
- // assert size of reassembled data <= our mtu
- if (l2cap_channel->reassembly_pos + size > l2cap_channel->local_mtu) break;
- // store continuation segment
- (void)memcpy(&l2cap_channel->reassembly_buffer[l2cap_channel->reassembly_pos],
- payload, size);
- l2cap_channel->reassembly_pos += size;
- break;
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_END_OF_L2CAP_SDU:
- // assert size of reassembled data <= our mtu
- if (l2cap_channel->reassembly_pos + size > l2cap_channel->local_mtu) break;
- // store continuation segment
- (void)memcpy(&l2cap_channel->reassembly_buffer[l2cap_channel->reassembly_pos],
- payload, size);
- l2cap_channel->reassembly_pos += size;
- // assert size of reassembled data matches announced sdu length
- if (l2cap_channel->reassembly_pos != l2cap_channel->reassembly_sdu_length) break;
- // packet complete -> disapatch
- l2cap_dispatch_to_channel(l2cap_channel, L2CAP_DATA_PACKET, l2cap_channel->reassembly_buffer, l2cap_channel->reassembly_pos);
- l2cap_channel->reassembly_pos = 0;
- break;
- }
- }
- static void l2cap_ertm_channel_send_information_frame(l2cap_channel_t * channel){
- channel->unacked_frames++;
- int index = channel->tx_send_index;
- channel->tx_send_index++;
- if (channel->tx_send_index >= channel->num_tx_buffers){
- channel->tx_send_index = 0;
- }
- l2cap_ertm_send_information_frame(channel, index, 0); // final = 0
- }
- #endif
- #ifdef L2CAP_USES_CHANNELS
- static uint16_t l2cap_next_local_cid(void){
- do {
- if (local_source_cid == 0xffffu) {
- local_source_cid = 0x40;
- } else {
- local_source_cid++;
- }
- } while (l2cap_get_channel_for_local_cid(local_source_cid) != NULL);
- return local_source_cid;
- }
- #endif
- static uint8_t l2cap_next_sig_id(void){
- if (sig_seq_nr == 0xffu) {
- sig_seq_nr = 1;
- } else {
- sig_seq_nr++;
- }
- return sig_seq_nr;
- }
- void l2cap_init(void){
- signaling_responses_pending = 0;
-
- l2cap_channels = NULL;
- #ifdef ENABLE_CLASSIC
- l2cap_services = NULL;
- require_security_level2_for_outgoing_sdp = 0;
- // Setup Connectionless Channel
- l2cap_fixed_channel_connectionless.local_cid = L2CAP_CID_CONNECTIONLESS_CHANNEL;
- l2cap_fixed_channel_connectionless.channel_type = L2CAP_CHANNEL_TYPE_CONNECTIONLESS;
- btstack_linked_list_add(&l2cap_channels, (btstack_linked_item_t *) &l2cap_fixed_channel_connectionless);
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- l2cap_le_services = NULL;
- #endif
- #ifdef ENABLE_BLE
- l2cap_event_packet_handler = NULL;
- l2cap_le_custom_max_mtu = 0;
- // Setup fixed ATT Channel
- l2cap_fixed_channel_att.local_cid = L2CAP_CID_ATTRIBUTE_PROTOCOL;
- l2cap_fixed_channel_att.channel_type = L2CAP_CHANNEL_TYPE_LE_FIXED;
- btstack_linked_list_add(&l2cap_channels, (btstack_linked_item_t *) &l2cap_fixed_channel_att);
- // Setup fixed SM Channel
- l2cap_fixed_channel_sm.local_cid = L2CAP_CID_SECURITY_MANAGER_PROTOCOL;
- l2cap_fixed_channel_sm.channel_type = L2CAP_CHANNEL_TYPE_LE_FIXED;
- btstack_linked_list_add(&l2cap_channels, (btstack_linked_item_t *) &l2cap_fixed_channel_sm);
- #endif
-
- //
- // register callback with HCI
- //
- hci_event_callback_registration.callback = &l2cap_hci_event_handler;
- hci_add_event_handler(&hci_event_callback_registration);
- hci_register_acl_packet_handler(&l2cap_acl_handler);
- #ifdef ENABLE_CLASSIC
- gap_connectable_control(0); // no services yet
- #endif
- }
- void l2cap_register_packet_handler(void (*handler)(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size)){
- #ifdef ENABLE_BLE
- l2cap_event_packet_handler = handler;
- #else
- UNUSED(handler); // ok: no code
- #endif
- }
- void l2cap_request_can_send_fix_channel_now_event(hci_con_handle_t con_handle, uint16_t channel_id){
- UNUSED(con_handle); // ok: there is no con handle
- l2cap_fixed_channel_t * channel = l2cap_fixed_channel_for_channel_id(channel_id);
- if (!channel) return;
- channel->waiting_for_can_send_now = 1;
- l2cap_notify_channel_can_send();
- }
- int l2cap_can_send_fixed_channel_packet_now(hci_con_handle_t con_handle, uint16_t channel_id){
- UNUSED(channel_id); // ok: only depends on Controller LE buffers
- return hci_can_send_acl_packet_now(con_handle);
- }
- uint8_t *l2cap_get_outgoing_buffer(void){
- return hci_get_outgoing_packet_buffer() + COMPLETE_L2CAP_HEADER; // 8 bytes
- }
- // only for L2CAP Basic Channels
- int l2cap_reserve_packet_buffer(void){
- return hci_reserve_packet_buffer();
- }
- // only for L2CAP Basic Channels
- void l2cap_release_packet_buffer(void){
- hci_release_packet_buffer();
- }
- static void l2cap_setup_header(uint8_t * acl_buffer, hci_con_handle_t con_handle, uint8_t packet_boundary, uint16_t remote_cid, uint16_t len){
- // 0 - Connection handle : PB=pb : BC=00
- little_endian_store_16(acl_buffer, 0u, con_handle | (packet_boundary << 12u) | (0u << 14u));
- // 2 - ACL length
- little_endian_store_16(acl_buffer, 2u, len + 4u);
- // 4 - L2CAP packet length
- little_endian_store_16(acl_buffer, 4u, len + 0u);
- // 6 - L2CAP channel DEST
- little_endian_store_16(acl_buffer, 6, remote_cid);
- }
- // assumption - only on LE connections
- int l2cap_send_prepared_connectionless(hci_con_handle_t con_handle, uint16_t cid, uint16_t len){
-
- if (!hci_is_packet_buffer_reserved()){
- log_error("l2cap_send_prepared_connectionless called without reserving packet first");
- return BTSTACK_ACL_BUFFERS_FULL;
- }
- if (!hci_can_send_prepared_acl_packet_now(con_handle)){
- log_info("l2cap_send_prepared_connectionless handle 0x%02x, cid 0x%02x, cannot send", con_handle, cid);
- return BTSTACK_ACL_BUFFERS_FULL;
- }
-
- log_debug("l2cap_send_prepared_connectionless handle %u, cid 0x%02x", con_handle, cid);
-
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
- l2cap_setup_header(acl_buffer, con_handle, 0, cid, len);
- // send
- return hci_send_acl_packet_buffer(len+8u);
- }
- // assumption - only on LE connections
- int l2cap_send_connectionless(hci_con_handle_t con_handle, uint16_t cid, uint8_t *data, uint16_t len){
-
- if (!hci_can_send_acl_packet_now(con_handle)){
- log_info("l2cap_send cid 0x%02x, cannot send", cid);
- return BTSTACK_ACL_BUFFERS_FULL;
- }
-
- hci_reserve_packet_buffer();
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
-
- (void)memcpy(&acl_buffer[8], data, len);
-
- return l2cap_send_prepared_connectionless(con_handle, cid, len);
- }
- static void l2cap_emit_can_send_now(btstack_packet_handler_t packet_handler, uint16_t channel) {
- log_debug("L2CAP_EVENT_CHANNEL_CAN_SEND_NOW local_cid 0x%x", channel);
- uint8_t event[4];
- event[0] = L2CAP_EVENT_CAN_SEND_NOW;
- event[1] = sizeof(event) - 2u;
- little_endian_store_16(event, 2, channel);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- packet_handler(HCI_EVENT_PACKET, channel, event, sizeof(event));
- }
- #ifdef L2CAP_USES_CHANNELS
- static void l2cap_dispatch_to_channel(l2cap_channel_t *channel, uint8_t type, uint8_t * data, uint16_t size){
- (* (channel->packet_handler))(type, channel->local_cid, data, size);
- }
- static void l2cap_emit_simple_event_with_cid(l2cap_channel_t * channel, uint8_t event_code){
- uint8_t event[4];
- event[0] = event_code;
- event[1] = sizeof(event) - 2u;
- little_endian_store_16(event, 2, channel->local_cid);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
- }
- #endif
- #ifdef ENABLE_CLASSIC
- void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status) {
- log_info("L2CAP_EVENT_CHANNEL_OPENED status 0x%x addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x local_mtu %u, remote_mtu %u, flush_timeout %u",
- status, bd_addr_to_str(channel->address), channel->con_handle, channel->psm,
- channel->local_cid, channel->remote_cid, channel->local_mtu, channel->remote_mtu, channel->flush_timeout);
- uint8_t event[26];
- event[0] = L2CAP_EVENT_CHANNEL_OPENED;
- event[1] = sizeof(event) - 2;
- event[2] = status;
- reverse_bd_addr(channel->address, &event[3]);
- little_endian_store_16(event, 9, channel->con_handle);
- little_endian_store_16(event, 11, channel->psm);
- little_endian_store_16(event, 13, channel->local_cid);
- little_endian_store_16(event, 15, channel->remote_cid);
- little_endian_store_16(event, 17, channel->local_mtu);
- little_endian_store_16(event, 19, channel->remote_mtu);
- little_endian_store_16(event, 21, channel->flush_timeout);
- event[23] = (channel->state_var & L2CAP_CHANNEL_STATE_VAR_INCOMING) ? 1 : 0;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- log_info("ERTM mode %u, fcs enabled %u", channel->mode, channel->fcs_option);
- event[24] = channel->mode;
- event[25] = channel->fcs_option;
- #else
- event[24] = L2CAP_CHANNEL_MODE_BASIC;
- event[25] = 0;
- #endif
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
- }
- static void l2cap_emit_channel_closed(l2cap_channel_t *channel) {
- log_info("L2CAP_EVENT_CHANNEL_CLOSED local_cid 0x%x", channel->local_cid);
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_CHANNEL_CLOSED);
- }
- static void l2cap_emit_incoming_connection(l2cap_channel_t *channel) {
- log_info("L2CAP_EVENT_INCOMING_CONNECTION addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x",
- bd_addr_to_str(channel->address), channel->con_handle, channel->psm, channel->local_cid, channel->remote_cid);
- uint8_t event[16];
- event[0] = L2CAP_EVENT_INCOMING_CONNECTION;
- event[1] = sizeof(event) - 2;
- reverse_bd_addr(channel->address, &event[2]);
- little_endian_store_16(event, 8, channel->con_handle);
- little_endian_store_16(event, 10, channel->psm);
- little_endian_store_16(event, 12, channel->local_cid);
- little_endian_store_16(event, 14, channel->remote_cid);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
- }
- static void l2cap_handle_channel_open_failed(l2cap_channel_t * channel, uint8_t status){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // emit ertm buffer released, as it's not needed. if in basic mode, it was either not allocated or already released
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_ERTM_BUFFER_RELEASED);
- }
- #endif
- l2cap_emit_channel_opened(channel, status);
- }
- static void l2cap_handle_channel_closed(l2cap_channel_t * channel){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // emit ertm buffer released, as it's not needed anymore. if in basic mode, it was either not allocated or already released
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_ERTM_BUFFER_RELEASED);
- }
- #endif
- l2cap_emit_channel_closed(channel);
- }
- #endif
- static l2cap_fixed_channel_t * l2cap_channel_item_by_cid(uint16_t cid){
- btstack_linked_list_iterator_t it;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_fixed_channel_t * channel = (l2cap_fixed_channel_t*) btstack_linked_list_iterator_next(&it);
- if (channel->local_cid == cid) {
- return channel;
- }
- }
- return NULL;
- }
- // used for fixed channels in LE (ATT/SM) and Classic (Connectionless Channel). CID < 0x04
- static l2cap_fixed_channel_t * l2cap_fixed_channel_for_channel_id(uint16_t local_cid){
- if (local_cid >= 0x40u) return NULL;
- return (l2cap_fixed_channel_t*) l2cap_channel_item_by_cid(local_cid);
- }
- // used for Classic Channels + LE Data Channels. local_cid >= 0x40
- #ifdef L2CAP_USES_CHANNELS
- static l2cap_channel_t * l2cap_get_channel_for_local_cid(uint16_t local_cid){
- if (local_cid < 0x40u) return NULL;
- return (l2cap_channel_t*) l2cap_channel_item_by_cid(local_cid);
- }
- void l2cap_request_can_send_now_event(uint16_t local_cid){
- l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) return;
- channel->waiting_for_can_send_now = 1;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- l2cap_ertm_notify_channel_can_send(channel);
- return;
- }
- #endif
- l2cap_notify_channel_can_send();
- }
- int l2cap_can_send_packet_now(uint16_t local_cid){
- l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) return 0;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- return l2cap_ertm_can_store_packet_now(channel);
- }
- #endif
- return hci_can_send_acl_packet_now(channel->con_handle);
- }
- int l2cap_can_send_prepared_packet_now(uint16_t local_cid){
- l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) return 0;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- return 0;
- }
- #endif
- return hci_can_send_prepared_acl_packet_now(channel->con_handle);
- }
- uint16_t l2cap_get_remote_mtu_for_local_cid(uint16_t local_cid){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (channel) {
- return channel->remote_mtu;
- }
- return 0;
- }
- #endif
- #ifdef L2CAP_USES_CHANNELS
- static int l2cap_is_dynamic_channel_type(l2cap_channel_type_t channel_type){
- switch (channel_type){
- case L2CAP_CHANNEL_TYPE_CLASSIC:
- case L2CAP_CHANNEL_TYPE_LE_DATA_CHANNEL:
- return 1;
- default:
- return 0;
- }
- }
- #endif
- #ifdef ENABLE_CLASSIC
- // RTX Timer only exist for dynamic channels
- static l2cap_channel_t * l2cap_channel_for_rtx_timer(btstack_timer_source_t * ts){
- btstack_linked_list_iterator_t it;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (&channel->rtx == ts) {
- return channel;
- }
- }
- return NULL;
- }
- static void l2cap_rtx_timeout(btstack_timer_source_t * ts){
- l2cap_channel_t * channel = l2cap_channel_for_rtx_timer(ts);
- if (!channel) return;
- log_info("l2cap_rtx_timeout for local cid 0x%02x", channel->local_cid);
- // "When terminating the channel, it is not necessary to send a L2CAP_DisconnectReq
- // and enter WAIT_DISCONNECT state. Channels can be transitioned directly to the CLOSED state."
- // notify client
- l2cap_handle_channel_open_failed(channel, L2CAP_CONNECTION_RESPONSE_RESULT_RTX_TIMEOUT);
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- }
- #endif
- #ifdef L2CAP_USES_CHANNELS
- static void l2cap_stop_rtx(l2cap_channel_t * channel){
- log_info("l2cap_stop_rtx for local cid 0x%02x", channel->local_cid);
- btstack_run_loop_remove_timer(&channel->rtx);
- }
- #endif
- #ifdef ENABLE_CLASSIC
- static void l2cap_start_rtx(l2cap_channel_t * channel){
- l2cap_stop_rtx(channel);
- log_info("l2cap_start_rtx for local cid 0x%02x", channel->local_cid);
- btstack_run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout);
- btstack_run_loop_set_timer(&channel->rtx, L2CAP_RTX_TIMEOUT_MS);
- btstack_run_loop_add_timer(&channel->rtx);
- }
- static void l2cap_start_ertx(l2cap_channel_t * channel){
- log_info("l2cap_start_ertx for local cid 0x%02x", channel->local_cid);
- l2cap_stop_rtx(channel);
- btstack_run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout);
- btstack_run_loop_set_timer(&channel->rtx, L2CAP_ERTX_TIMEOUT_MS);
- btstack_run_loop_add_timer(&channel->rtx);
- }
- void l2cap_require_security_level_2_for_outgoing_sdp(void){
- require_security_level2_for_outgoing_sdp = 1;
- }
- static int l2cap_security_level_0_allowed_for_PSM(uint16_t psm){
- return (psm == BLUETOOTH_PSM_SDP) && (!require_security_level2_for_outgoing_sdp);
- }
- static int l2cap_send_signaling_packet(hci_con_handle_t handle, L2CAP_SIGNALING_COMMANDS cmd, int identifier, ...){
- if (!hci_can_send_acl_packet_now(handle)){
- log_info("l2cap_send_signaling_packet, cannot send");
- return BTSTACK_ACL_BUFFERS_FULL;
- }
-
- // log_info("l2cap_send_signaling_packet type %u", cmd);
- hci_reserve_packet_buffer();
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
- va_list argptr;
- va_start(argptr, identifier);
- uint16_t len = l2cap_create_signaling_classic(acl_buffer, handle, cmd, identifier, argptr);
- va_end(argptr);
- // log_info("l2cap_send_signaling_packet con %u!", handle);
- return hci_send_acl_packet_buffer(len);
- }
- // assumption - only on Classic connections
- // cannot be used for L2CAP ERTM
- int l2cap_send_prepared(uint16_t local_cid, uint16_t len){
-
- if (!hci_is_packet_buffer_reserved()){
- log_error("l2cap_send_prepared called without reserving packet first");
- return BTSTACK_ACL_BUFFERS_FULL;
- }
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_send_prepared no channel for cid 0x%02x", local_cid);
- return -1; // TODO: define error
- }
- if (!hci_can_send_prepared_acl_packet_now(channel->con_handle)){
- log_info("l2cap_send_prepared cid 0x%02x, cannot send", local_cid);
- return BTSTACK_ACL_BUFFERS_FULL;
- }
-
- log_debug("l2cap_send_prepared cid 0x%02x, handle %u, 1 credit used", local_cid, channel->con_handle);
-
- int fcs_size = 0;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION && channel->fcs_option){
- fcs_size = 2;
- }
- #endif
- // set non-flushable packet boundary flag if supported on Controller
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
- uint8_t packet_boundary_flag = hci_non_flushable_packet_boundary_flag_supported() ? 0x00 : 0x02;
- l2cap_setup_header(acl_buffer, channel->con_handle, packet_boundary_flag, channel->remote_cid, len + fcs_size);
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (fcs_size){
- // calculate FCS over l2cap data
- uint16_t fcs = crc16_calc(acl_buffer + 4, 4 + len);
- log_info("I-Frame: fcs 0x%04x", fcs);
- little_endian_store_16(acl_buffer, 8 + len, fcs);
- }
- #endif
- // send
- return hci_send_acl_packet_buffer(len+8+fcs_size);
- }
- // assumption - only on Classic connections
- int l2cap_send(uint16_t local_cid, uint8_t *data, uint16_t len){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_send no channel for cid 0x%02x", local_cid);
- return -1; // TODO: define error
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // send in ERTM
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- return l2cap_ertm_send(channel, data, len);
- }
- #endif
- if (len > channel->remote_mtu){
- log_error("l2cap_send cid 0x%02x, data length exceeds remote MTU.", local_cid);
- return L2CAP_DATA_LEN_EXCEEDS_REMOTE_MTU;
- }
- if (!hci_can_send_acl_packet_now(channel->con_handle)){
- log_info("l2cap_send cid 0x%02x, cannot send", local_cid);
- return BTSTACK_ACL_BUFFERS_FULL;
- }
- hci_reserve_packet_buffer();
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
- (void)memcpy(&acl_buffer[8], data, len);
- return l2cap_send_prepared(local_cid, len);
- }
- int l2cap_send_echo_request(hci_con_handle_t con_handle, uint8_t *data, uint16_t len){
- return l2cap_send_signaling_packet(con_handle, ECHO_REQUEST, 0x77, len, data);
- }
- static inline void channelStateVarSetFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){
- channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var | flag);
- }
- static inline void channelStateVarClearFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){
- channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var & ~flag);
- }
- #endif
- #ifdef ENABLE_BLE
- static int l2cap_send_le_signaling_packet(hci_con_handle_t handle, L2CAP_SIGNALING_COMMANDS cmd, int identifier, ...){
- if (!hci_can_send_acl_packet_now(handle)){
- log_info("l2cap_send_le_signaling_packet, cannot send");
- return BTSTACK_ACL_BUFFERS_FULL;
- }
-
- // log_info("l2cap_send_le_signaling_packet type %u", cmd);
- hci_reserve_packet_buffer();
- uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
- va_list argptr;
- va_start(argptr, identifier);
- uint16_t len = l2cap_create_signaling_le(acl_buffer, handle, cmd, identifier, argptr);
- va_end(argptr);
- // log_info("l2cap_send_le_signaling_packet con %u!", handle);
- return hci_send_acl_packet_buffer(len);
- }
- #endif
- uint16_t l2cap_max_mtu(void){
- return HCI_ACL_PAYLOAD_SIZE - L2CAP_HEADER_SIZE;
- }
- #ifdef ENABLE_BLE
- uint16_t l2cap_max_le_mtu(void){
- if (l2cap_le_custom_max_mtu != 0u) return l2cap_le_custom_max_mtu;
- return l2cap_max_mtu();
- }
- void l2cap_set_max_le_mtu(uint16_t max_mtu){
- if (max_mtu < l2cap_max_mtu()){
- l2cap_le_custom_max_mtu = max_mtu;
- }
- }
- #endif
- #ifdef ENABLE_CLASSIC
- static uint16_t l2cap_setup_options_mtu(uint8_t * config_options, uint16_t mtu){
- config_options[0] = L2CAP_CONFIG_OPTION_TYPE_MAX_TRANSMISSION_UNIT; // MTU
- config_options[1] = 2; // len param
- little_endian_store_16(config_options, 2, mtu);
- return 4;
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- static int l2cap_ertm_mode(l2cap_channel_t * channel){
- hci_connection_t * connection = hci_connection_for_handle(channel->con_handle);
- return ((connection->l2cap_state.information_state == L2CAP_INFORMATION_STATE_DONE)
- && (connection->l2cap_state.extended_feature_mask & 0x08));
- }
- #endif
- static uint16_t l2cap_setup_options_request(l2cap_channel_t * channel, uint8_t * config_options){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // use ERTM options if supported by remote and channel ready to use it
- if (l2cap_ertm_mode(channel) && channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- return l2cap_setup_options_ertm_request(channel, config_options);
- }
- #endif
- uint16_t mtu = channel->local_mtu;
- return l2cap_setup_options_mtu(config_options, mtu);
- }
- static uint16_t l2cap_setup_options_mtu_response(l2cap_channel_t * channel, uint8_t * config_options){
- uint16_t mtu = btstack_min(channel->local_mtu, channel->remote_mtu);
- return l2cap_setup_options_mtu(config_options, mtu);
- }
- static uint32_t l2cap_extended_features_mask(void){
- // extended features request supported, features: fixed channels, unicast connectionless data reception
- uint32_t features = 0x280;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- features |= 0x0028;
- #endif
- return features;
- }
- #endif
- //
- #ifdef ENABLE_CLASSIC
- // returns true if channel was finalized
- static bool l2cap_run_for_classic_channel(l2cap_channel_t * channel){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- uint8_t config_options[18];
- #else
- uint8_t config_options[10];
- #endif
- switch (channel->state){
- case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE:
- case L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return false;
- if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND) {
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND);
- l2cap_send_signaling_packet(channel->con_handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 1, 0);
- }
- break;
- case L2CAP_STATE_WILL_SEND_CREATE_CONNECTION:
- if (!hci_can_send_command_packet_now()) break;
- // send connection request - set state first
- channel->state = L2CAP_STATE_WAIT_CONNECTION_COMPLETE;
- // BD_ADDR, Packet_Type, Page_Scan_Repetition_Mode, Reserved, Clock_Offset, Allow_Role_Switch
- (void)memcpy(l2cap_outgoing_classic_addr, channel->address, 6);
- hci_send_cmd(&hci_create_connection, channel->address, hci_usable_acl_packet_types(), 0, 0, 0, hci_get_allow_role_switch());
- break;
- case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return false;
- channel->state = L2CAP_STATE_INVALID;
- l2cap_send_signaling_packet(channel->con_handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, channel->reason, 0);
- // discard channel - l2cap_finialize_channel_close without sending l2cap close event
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- channel = NULL;
- break;
- case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return false;
- channel->state = L2CAP_STATE_CONFIG;
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
- l2cap_send_signaling_packet(channel->con_handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 0, 0);
- break;
- case L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return false;
- // success, start l2cap handshake
- channel->local_sig_id = l2cap_next_sig_id();
- channel->state = L2CAP_STATE_WAIT_CONNECT_RSP;
- l2cap_send_signaling_packet( channel->con_handle, CONNECTION_REQUEST, channel->local_sig_id, channel->psm, channel->local_cid);
- l2cap_start_rtx(channel);
- break;
- case L2CAP_STATE_CONFIG:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return false;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // fallback to basic mode if ERTM requested but not not supported by remote
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- if (!l2cap_ertm_mode(channel)){
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_ERTM_BUFFER_RELEASED);
- channel->mode = L2CAP_CHANNEL_MODE_BASIC;
- }
- }
- #endif
- if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP){
- uint16_t flags = 0;
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP);
- if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT) {
- flags = 1;
- } else {
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP);
- }
- if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID){
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP);
- l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_UNKNOWN_OPTIONS, 0, NULL);
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- } else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_REJECTED){
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_REJECTED);
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP);
- uint16_t options_size = l2cap_setup_options_ertm_response(channel, config_options);
- l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_UNACCEPTABLE_PARAMETERS, options_size, &config_options);
- } else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_ERTM){
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_ERTM);
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU);
- uint16_t options_size = l2cap_setup_options_ertm_response(channel, config_options);
- l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_SUCCESS, options_size, &config_options);
- #endif
- } else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU){
- channelStateVarClearFlag(channel,L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU);
- uint16_t options_size = l2cap_setup_options_mtu_response(channel, config_options);
- l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_SUCCESS, options_size, &config_options);
- } else {
- l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_SUCCESS, 0, NULL);
- }
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT);
- }
- else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ){
- channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_REQ);
- channel->local_sig_id = l2cap_next_sig_id();
- uint16_t options_size = l2cap_setup_options_request(channel, config_options);
- l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_REQUEST, channel->local_sig_id, channel->remote_cid, 0, options_size, &config_options);
- l2cap_start_rtx(channel);
- }
- if (l2cap_channel_ready_for_open(channel)){
- channel->state = L2CAP_STATE_OPEN;
- l2cap_emit_channel_opened(channel, 0); // success
- }
- break;
- case L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return false;
- channel->state = L2CAP_STATE_INVALID;
- l2cap_send_signaling_packet( channel->con_handle, DISCONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid);
- // we don't start an RTX timer for a disconnect - there's no point in closing the channel if the other side doesn't respond :)
- l2cap_finialize_channel_close(channel); // -- remove from list
- channel = NULL;
- break;
- case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return false;
- channel->local_sig_id = l2cap_next_sig_id();
- channel->state = L2CAP_STATE_WAIT_DISCONNECT;
- l2cap_send_signaling_packet( channel->con_handle, DISCONNECTION_REQUEST, channel->local_sig_id, channel->remote_cid, channel->local_cid);
- break;
- default:
- break;
- }
- // handle channel finalize on L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE and L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE
- return channel == NULL;
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- static void l2cap_run_for_classic_channel_ertm(l2cap_channel_t * channel){
- // ERTM mode
- if (channel->mode != L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION) return;
- // check if we can still send
- if (channel->con_handle == HCI_CON_HANDLE_INVALID) return;
- if (!hci_can_send_acl_packet_now(channel->con_handle)) return;
- if (channel->send_supervisor_frame_receiver_ready){
- channel->send_supervisor_frame_receiver_ready = 0;
- log_info("Send S-Frame: RR %u, final %u", channel->req_seq, channel->set_final_bit_after_packet_with_poll_bit_set);
- uint16_t control = l2cap_encanced_control_field_for_supevisor_frame( L2CAP_SUPERVISORY_FUNCTION_RR_RECEIVER_READY, 0, channel->set_final_bit_after_packet_with_poll_bit_set, channel->req_seq);
- channel->set_final_bit_after_packet_with_poll_bit_set = 0;
- l2cap_ertm_send_supervisor_frame(channel, control);
- return;
- }
- if (channel->send_supervisor_frame_receiver_ready_poll){
- channel->send_supervisor_frame_receiver_ready_poll = 0;
- log_info("Send S-Frame: RR %u with poll=1 ", channel->req_seq);
- uint16_t control = l2cap_encanced_control_field_for_supevisor_frame( L2CAP_SUPERVISORY_FUNCTION_RR_RECEIVER_READY, 1, 0, channel->req_seq);
- l2cap_ertm_send_supervisor_frame(channel, control);
- return;
- }
- if (channel->send_supervisor_frame_receiver_not_ready){
- channel->send_supervisor_frame_receiver_not_ready = 0;
- log_info("Send S-Frame: RNR %u", channel->req_seq);
- uint16_t control = l2cap_encanced_control_field_for_supevisor_frame( L2CAP_SUPERVISORY_FUNCTION_RNR_RECEIVER_NOT_READY, 0, 0, channel->req_seq);
- l2cap_ertm_send_supervisor_frame(channel, control);
- return;
- }
- if (channel->send_supervisor_frame_reject){
- channel->send_supervisor_frame_reject = 0;
- log_info("Send S-Frame: REJ %u", channel->req_seq);
- uint16_t control = l2cap_encanced_control_field_for_supevisor_frame( L2CAP_SUPERVISORY_FUNCTION_REJ_REJECT, 0, 0, channel->req_seq);
- l2cap_ertm_send_supervisor_frame(channel, control);
- return;
- }
- if (channel->send_supervisor_frame_selective_reject){
- channel->send_supervisor_frame_selective_reject = 0;
- log_info("Send S-Frame: SREJ %u", channel->expected_tx_seq);
- uint16_t control = l2cap_encanced_control_field_for_supevisor_frame( L2CAP_SUPERVISORY_FUNCTION_SREJ_SELECTIVE_REJECT, 0, channel->set_final_bit_after_packet_with_poll_bit_set, channel->expected_tx_seq);
- channel->set_final_bit_after_packet_with_poll_bit_set = 0;
- l2cap_ertm_send_supervisor_frame(channel, control);
- return;
- }
- if (channel->srej_active){
- int i;
- for (i=0;i<channel->num_tx_buffers;i++){
- l2cap_ertm_tx_packet_state_t * tx_state = &channel->tx_packets_state[i];
- if (tx_state->retransmission_requested) {
- tx_state->retransmission_requested = 0;
- uint8_t final = channel->set_final_bit_after_packet_with_poll_bit_set;
- channel->set_final_bit_after_packet_with_poll_bit_set = 0;
- l2cap_ertm_send_information_frame(channel, i, final);
- break;
- }
- }
- if (i == channel->num_tx_buffers){
- // no retransmission request found
- channel->srej_active = 0;
- } else {
- // packet was sent
- return;
- }
- }
- }
- #endif /* ERTM */
- #endif /* Classic */
- static void l2cap_run_signaling_response(void) {
- // check pending signaling responses
- while (signaling_responses_pending){
- hci_con_handle_t handle = signaling_responses[0].handle;
- if (!hci_can_send_acl_packet_now(handle)) break;
- uint8_t sig_id = signaling_responses[0].sig_id;
- uint8_t response_code = signaling_responses[0].code;
- uint16_t result = signaling_responses[0].data; // CONNECTION_REQUEST, COMMAND_REJECT
- #ifdef ENABLE_CLASSIC
- uint16_t info_type = signaling_responses[0].data; // INFORMATION_REQUEST
- uint16_t source_cid = signaling_responses[0].cid; // CONNECTION_REQUEST
- #endif
- // remove first item before sending (to avoid sending response mutliple times)
- signaling_responses_pending--;
- int i;
- for (i=0; i < signaling_responses_pending; i++){
- (void)memcpy(&signaling_responses[i],
- &signaling_responses[i + 1],
- sizeof(l2cap_signaling_response_t));
- }
- switch (response_code){
- #ifdef ENABLE_CLASSIC
- case CONNECTION_REQUEST:
- l2cap_send_signaling_packet(handle, CONNECTION_RESPONSE, sig_id, source_cid, 0, result, 0);
- // also disconnect if result is 0x0003 - security blocked
- if (result == 0x0003){
- hci_disconnect_security_block(handle);
- }
- break;
- case ECHO_REQUEST:
- l2cap_send_signaling_packet(handle, ECHO_RESPONSE, sig_id, 0, NULL);
- break;
- case INFORMATION_REQUEST:
- switch (info_type){
- case L2CAP_INFO_TYPE_CONNECTIONLESS_MTU: {
- uint16_t connectionless_mtu = hci_max_acl_data_packet_length();
- l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, info_type, 0, sizeof(connectionless_mtu), &connectionless_mtu);
- }
- break;
- case L2CAP_INFO_TYPE_EXTENDED_FEATURES_SUPPORTED: {
- uint32_t features = l2cap_extended_features_mask();
- l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, info_type, 0, sizeof(features), &features);
- }
- break;
- case L2CAP_INFO_TYPE_FIXED_CHANNELS_SUPPORTED: {
- uint8_t map[8];
- memset(map, 0, 8);
- map[0] = 0x06; // L2CAP Signaling Channel (0x02) + Connectionless reception (0x04)
- l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, info_type, 0, sizeof(map), &map);
- }
- break;
- default:
- // all other types are not supported
- l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, info_type, 1, 0, NULL);
- break;
- }
- break;
- case COMMAND_REJECT:
- l2cap_send_signaling_packet(handle, COMMAND_REJECT, sig_id, result, 0, NULL);
- break;
- #endif
- #ifdef ENABLE_BLE
- case LE_CREDIT_BASED_CONNECTION_REQUEST:
- l2cap_send_le_signaling_packet(handle, LE_CREDIT_BASED_CONNECTION_RESPONSE, sig_id, 0, 0, 0, 0, result);
- break;
- case COMMAND_REJECT_LE:
- l2cap_send_le_signaling_packet(handle, COMMAND_REJECT, sig_id, result, 0, NULL);
- break;
- #endif
- default:
- // should not happen
- break;
- }
- }
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- static bool l2ap_run_ertm(void){
- // send l2cap information request if neccessary
- btstack_linked_list_iterator_t it;
- hci_connections_get_iterator(&it);
- while(btstack_linked_list_iterator_has_next(&it)){
- hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
- if (connection->l2cap_state.information_state == L2CAP_INFORMATION_STATE_W2_SEND_EXTENDED_FEATURE_REQUEST){
- if (!hci_can_send_acl_packet_now(connection->con_handle)) break;
- connection->l2cap_state.information_state = L2CAP_INFORMATION_STATE_W4_EXTENDED_FEATURE_RESPONSE;
- uint8_t sig_id = l2cap_next_sig_id();
- uint8_t info_type = L2CAP_INFO_TYPE_EXTENDED_FEATURES_SUPPORTED;
- l2cap_send_signaling_packet(connection->con_handle, INFORMATION_REQUEST, sig_id, info_type);
- return true;
- }
- }
- return false;
- }
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- static void l2cap_run_le_data_channels(void){
- btstack_linked_list_iterator_t it;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- uint16_t mps;
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (channel->channel_type != L2CAP_CHANNEL_TYPE_LE_DATA_CHANNEL) continue;
- // log_info("l2cap_run: channel %p, state %u, var 0x%02x", channel, channel->state, channel->state_var);
- switch (channel->state){
- case L2CAP_STATE_WILL_SEND_LE_CONNECTION_REQUEST:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
- channel->state = L2CAP_STATE_WAIT_LE_CONNECTION_RESPONSE;
- // le psm, source cid, mtu, mps, initial credits
- channel->local_sig_id = l2cap_next_sig_id();
- channel->credits_incoming = channel->new_credits_incoming;
- channel->new_credits_incoming = 0;
- mps = btstack_min(l2cap_max_le_mtu(), channel->local_mtu);
- l2cap_send_le_signaling_packet( channel->con_handle, LE_CREDIT_BASED_CONNECTION_REQUEST, channel->local_sig_id, channel->psm, channel->local_cid, channel->local_mtu, mps, channel->credits_incoming);
- break;
- case L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_ACCEPT:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
- // TODO: support larger MPS
- channel->state = L2CAP_STATE_OPEN;
- channel->credits_incoming = channel->new_credits_incoming;
- channel->new_credits_incoming = 0;
- mps = btstack_min(l2cap_max_le_mtu(), channel->local_mtu);
- l2cap_send_le_signaling_packet(channel->con_handle, LE_CREDIT_BASED_CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->local_mtu, mps, channel->credits_incoming, 0);
- // notify client
- l2cap_emit_le_channel_opened(channel, 0);
- break;
- case L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_DECLINE:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
- channel->state = L2CAP_STATE_INVALID;
- l2cap_send_le_signaling_packet(channel->con_handle, LE_CREDIT_BASED_CONNECTION_RESPONSE, channel->remote_sig_id, 0, 0, 0, 0, channel->reason);
- // discard channel - l2cap_finialize_channel_close without sending l2cap close event
- btstack_linked_list_iterator_remove(&it);
- l2cap_free_channel_entry(channel);
- break;
- case L2CAP_STATE_OPEN:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
- // send credits
- if (channel->new_credits_incoming){
- log_info("l2cap: sending %u credits", channel->new_credits_incoming);
- channel->local_sig_id = l2cap_next_sig_id();
- uint16_t new_credits = channel->new_credits_incoming;
- channel->new_credits_incoming = 0;
- channel->credits_incoming += new_credits;
- l2cap_send_le_signaling_packet(channel->con_handle, LE_FLOW_CONTROL_CREDIT, channel->local_sig_id, channel->remote_cid, new_credits);
- }
- break;
- case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
- channel->local_sig_id = l2cap_next_sig_id();
- channel->state = L2CAP_STATE_WAIT_DISCONNECT;
- l2cap_send_le_signaling_packet( channel->con_handle, DISCONNECTION_REQUEST, channel->local_sig_id, channel->remote_cid, channel->local_cid);
- break;
- case L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE:
- if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
- channel->state = L2CAP_STATE_INVALID;
- l2cap_send_le_signaling_packet( channel->con_handle, DISCONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid);
- l2cap_le_finialize_channel_close(channel); // -- remove from list
- break;
- default:
- break;
- }
- }
- }
- #endif
- // MARK: L2CAP_RUN
- // process outstanding signaling tasks
- static void l2cap_run(void){
-
- // log_info("l2cap_run: entered");
- l2cap_run_signaling_response();
-
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- bool done = l2ap_run_ertm();
- if (done) return;
- #endif
- #if defined(ENABLE_CLASSIC) || defined(ENABLE_BLE)
- btstack_linked_list_iterator_t it;
- #endif
- #ifdef ENABLE_CLASSIC
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (channel->channel_type != L2CAP_CHANNEL_TYPE_CLASSIC) continue;
- // log_info("l2cap_run: channel %p, state %u, var 0x%02x", channel, channel->state, channel->state_var);
- bool finalized = l2cap_run_for_classic_channel(channel);
- if (!finalized) {
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- l2cap_run_for_classic_channel_ertm(channel);
- #endif
- }
- }
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- l2cap_run_le_data_channels();
- #endif
- #ifdef ENABLE_BLE
- // send l2cap con paramter update if necessary
- hci_connections_get_iterator(&it);
- while(btstack_linked_list_iterator_has_next(&it)){
- hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
- if ((connection->address_type != BD_ADDR_TYPE_LE_PUBLIC) && (connection->address_type != BD_ADDR_TYPE_LE_RANDOM)) continue;
- if (!hci_can_send_acl_packet_now(connection->con_handle)) continue;
- switch (connection->le_con_parameter_update_state){
- case CON_PARAMETER_UPDATE_SEND_REQUEST:
- connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
- l2cap_send_le_signaling_packet(connection->con_handle, CONNECTION_PARAMETER_UPDATE_REQUEST, l2cap_next_sig_id(),
- connection->le_conn_interval_min, connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout);
- break;
- case CON_PARAMETER_UPDATE_SEND_RESPONSE:
- connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
- l2cap_send_le_signaling_packet(connection->con_handle, CONNECTION_PARAMETER_UPDATE_RESPONSE, connection->le_con_param_update_identifier, 0);
- break;
- case CON_PARAMETER_UPDATE_DENY:
- connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
- l2cap_send_le_signaling_packet(connection->con_handle, CONNECTION_PARAMETER_UPDATE_RESPONSE, connection->le_con_param_update_identifier, 1);
- break;
- default:
- break;
- }
- }
- #endif
- // log_info("l2cap_run: exit");
- }
- #ifdef ENABLE_CLASSIC
- static void l2cap_handle_connection_complete(hci_con_handle_t con_handle, l2cap_channel_t * channel){
- if ((channel->state == L2CAP_STATE_WAIT_CONNECTION_COMPLETE) || (channel->state == L2CAP_STATE_WILL_SEND_CREATE_CONNECTION)) {
- log_info("connection complete con_handle %04x - for channel %p cid 0x%04x", (int) con_handle, channel, channel->local_cid);
- // success, start l2cap handshake
- channel->con_handle = con_handle;
- // check remote SSP feature first
- channel->state = L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES;
- }
- }
- static void l2cap_ready_to_connect(l2cap_channel_t * channel){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // assumption: outgoing connection
- hci_connection_t * connection = hci_connection_for_handle(channel->con_handle);
- if (connection->l2cap_state.information_state == L2CAP_INFORMATION_STATE_IDLE){
- connection->l2cap_state.information_state = L2CAP_INFORMATION_STATE_W2_SEND_EXTENDED_FEATURE_REQUEST;
- channel->state = L2CAP_STATE_WAIT_OUTGOING_EXTENDED_FEATURES;
- return;
- }
- #endif
- // fine, go ahead
- channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST;
- }
- static void l2cap_handle_remote_supported_features_received(l2cap_channel_t * channel){
- if (channel->state != L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES) return;
- // we have been waiting for remote supported features
- log_info("l2cap received remote supported features, sec_level_0_allowed for psm %u = %u", channel->psm, l2cap_security_level_0_allowed_for_PSM(channel->psm));
- if (l2cap_security_level_0_allowed_for_PSM(channel->psm) == 0){
- // request security level 2
- channel->state = L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE;
- channel->required_security_level = gap_get_security_level();
- gap_request_security_level(channel->con_handle, gap_get_security_level());
- return;
- }
- l2cap_ready_to_connect(channel);
- }
- #endif
- #ifdef L2CAP_USES_CHANNELS
- static l2cap_channel_t * l2cap_create_channel_entry(btstack_packet_handler_t packet_handler, l2cap_channel_type_t channel_type, bd_addr_t address, bd_addr_type_t address_type,
- uint16_t psm, uint16_t local_mtu, gap_security_level_t security_level){
- l2cap_channel_t * channel = btstack_memory_l2cap_channel_get();
- if (!channel) {
- return NULL;
- }
-
- // fill in
- channel->packet_handler = packet_handler;
- channel->channel_type = channel_type;
- bd_addr_copy(channel->address, address);
- channel->address_type = address_type;
- channel->psm = psm;
- channel->local_mtu = local_mtu;
- channel->remote_mtu = L2CAP_DEFAULT_MTU;
- channel->required_security_level = security_level;
- //
- channel->local_cid = l2cap_next_local_cid();
- channel->con_handle = HCI_CON_HANDLE_INVALID;
- // set initial state
- channel->state = L2CAP_STATE_WILL_SEND_CREATE_CONNECTION;
- channel->state_var = L2CAP_CHANNEL_STATE_VAR_NONE;
- channel->remote_sig_id = L2CAP_SIG_ID_INVALID;
- channel->local_sig_id = L2CAP_SIG_ID_INVALID;
- log_info("create channel %p, local_cid 0x%04x", channel, channel->local_cid);
- return channel;
- }
- static void l2cap_free_channel_entry(l2cap_channel_t * channel){
- log_info("free channel %p, local_cid 0x%04x", channel, channel->local_cid);
- // assert all timers are stopped
- l2cap_stop_rtx(channel);
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- l2cap_ertm_stop_retransmission_timer(channel);
- l2cap_ertm_stop_monitor_timer(channel);
- #endif
- // free memory
- btstack_memory_l2cap_channel_free(channel);
- }
- #endif
- #ifdef ENABLE_CLASSIC
- /**
- * @brief Creates L2CAP channel to the PSM of a remote device with baseband address. A new baseband connection will be initiated if necessary.
- * @param packet_handler
- * @param address
- * @param psm
- * @param mtu
- * @param local_cid
- */
- uint8_t l2cap_create_channel(btstack_packet_handler_t channel_packet_handler, bd_addr_t address, uint16_t psm, uint16_t mtu, uint16_t * out_local_cid){
- // limit MTU to the size of our outtgoing HCI buffer
- uint16_t local_mtu = btstack_min(mtu, l2cap_max_mtu());
- log_info("L2CAP_CREATE_CHANNEL addr %s psm 0x%x mtu %u -> local mtu %u", bd_addr_to_str(address), psm, mtu, local_mtu);
- l2cap_channel_t * channel = l2cap_create_channel_entry(channel_packet_handler, L2CAP_CHANNEL_TYPE_CLASSIC, address, BD_ADDR_TYPE_ACL, psm, local_mtu, LEVEL_0);
- if (!channel) {
- return BTSTACK_MEMORY_ALLOC_FAILED;
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- channel->mode = L2CAP_CHANNEL_MODE_BASIC;
- #endif
- // add to connections list
- btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel);
- // store local_cid
- if (out_local_cid){
- *out_local_cid = channel->local_cid;
- }
- // check if hci connection is already usable
- hci_connection_t * conn = hci_connection_for_bd_addr_and_type(address, BD_ADDR_TYPE_ACL);
- if (conn && conn->con_handle != HCI_CON_HANDLE_INVALID){
- log_info("l2cap_create_channel, hci connection 0x%04x already exists", conn->con_handle);
- l2cap_handle_connection_complete(conn->con_handle, channel);
- // check if remote supported fearures are already received
- if (conn->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) {
- l2cap_handle_remote_supported_features_received(channel);
- }
- }
- l2cap_run();
- return ERROR_CODE_SUCCESS;
- }
- void l2cap_disconnect(uint16_t local_cid, uint8_t reason){
- log_info("L2CAP_DISCONNECT local_cid 0x%x reason 0x%x", local_cid, reason);
- // find channel for local_cid
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (channel) {
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- }
- // process
- l2cap_run();
- }
- static void l2cap_handle_connection_failed_for_addr(bd_addr_t address, uint8_t status){
- // mark all channels before emitting open events as these could trigger new connetion requests to the same device
- btstack_linked_list_iterator_t it;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (bd_addr_cmp( channel->address, address) != 0) continue;
- // channel for this address found
- switch (channel->state){
- case L2CAP_STATE_WAIT_CONNECTION_COMPLETE:
- case L2CAP_STATE_WILL_SEND_CREATE_CONNECTION:
- channel->state = L2CAP_STATE_EMIT_OPEN_FAILED_AND_DISCARD;
- break;
- default:
- break;
- }
- }
- // emit and free marked entries. restart loop to deal with list changes
- int done = 0;
- while (!done) {
- done = 1;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (channel->state == L2CAP_STATE_EMIT_OPEN_FAILED_AND_DISCARD){
- done = 0;
- // failure, forward error code
- l2cap_handle_channel_open_failed(channel, status);
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- break;
- }
- }
- }
- }
- static void l2cap_handle_connection_success_for_addr(bd_addr_t address, hci_con_handle_t handle){
- btstack_linked_list_iterator_t it;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if ( ! bd_addr_cmp( channel->address, address) ){
- l2cap_handle_connection_complete(handle, channel);
- }
- }
- // process
- l2cap_run();
- }
- #endif
- static bool l2cap_channel_ready_to_send(l2cap_channel_t * channel){
- switch (channel->channel_type){
- #ifdef ENABLE_CLASSIC
- case L2CAP_CHANNEL_TYPE_CLASSIC:
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // send if we have more data and remote windows isn't full yet
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION) {
- if (channel->unacked_frames >= btstack_min(channel->num_stored_tx_frames, channel->remote_tx_window_size)) return false;
- return hci_can_send_acl_classic_packet_now() != 0;
- }
- #endif
- if (!channel->waiting_for_can_send_now) return false;
- return (hci_can_send_acl_classic_packet_now() != 0);
- case L2CAP_CHANNEL_TYPE_CONNECTIONLESS:
- if (!channel->waiting_for_can_send_now) return false;
- return hci_can_send_acl_classic_packet_now() != 0;
- #endif
- #ifdef ENABLE_BLE
- case L2CAP_CHANNEL_TYPE_LE_FIXED:
- if (!channel->waiting_for_can_send_now) return false;
- return hci_can_send_acl_le_packet_now() != 0;
- #ifdef ENABLE_LE_DATA_CHANNELS
- case L2CAP_CHANNEL_TYPE_LE_DATA_CHANNEL:
- if (channel->send_sdu_buffer == NULL) return false;
- if (channel->credits_outgoing == 0u) return false;
- return hci_can_send_acl_le_packet_now() != 0;
- #endif
- #endif
- default:
- return false;
- }
- }
- static void l2cap_channel_trigger_send(l2cap_channel_t * channel){
- switch (channel->channel_type){
- #ifdef ENABLE_CLASSIC
- case L2CAP_CHANNEL_TYPE_CLASSIC:
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION) {
- l2cap_ertm_channel_send_information_frame(channel);
- return;
- }
- #endif
- channel->waiting_for_can_send_now = 0;
- l2cap_emit_can_send_now(channel->packet_handler, channel->local_cid);
- break;
- case L2CAP_CHANNEL_TYPE_CONNECTIONLESS:
- channel->waiting_for_can_send_now = 0;
- l2cap_emit_can_send_now(channel->packet_handler, channel->local_cid);
- break;
- #endif
- #ifdef ENABLE_BLE
- case L2CAP_CHANNEL_TYPE_LE_FIXED:
- channel->waiting_for_can_send_now = 0;
- l2cap_emit_can_send_now(channel->packet_handler, channel->local_cid);
- break;
- #ifdef ENABLE_LE_DATA_CHANNELS
- case L2CAP_CHANNEL_TYPE_LE_DATA_CHANNEL:
- l2cap_le_send_pdu(channel);
- break;
- #endif
- #endif
- default:
- break;
- }
- }
- static void l2cap_notify_channel_can_send(void){
- bool done = false;
- while (!done){
- done = true;
- btstack_linked_list_iterator_t it;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- bool ready = l2cap_channel_ready_to_send(channel);
- if (!ready) continue;
- // requeue channel for fairness
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel);
- // trigger sending
- l2cap_channel_trigger_send(channel);
- // exit inner loop as we just broke the iterator, but try again
- done = false;
- break;
- }
- }
- }
- #ifdef L2CAP_USES_CHANNELS
- static int l2cap_send_open_failed_on_hci_disconnect(l2cap_channel_t * channel){
- // open cannot fail for for incoming connections
- if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_INCOMING) return 0;
- // check state
- switch (channel->state){
- case L2CAP_STATE_WILL_SEND_CREATE_CONNECTION:
- case L2CAP_STATE_WAIT_CONNECTION_COMPLETE:
- case L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES:
- case L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE:
- case L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT:
- case L2CAP_STATE_WAIT_OUTGOING_EXTENDED_FEATURES:
- case L2CAP_STATE_WAIT_CONNECT_RSP:
- case L2CAP_STATE_CONFIG:
- case L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST:
- case L2CAP_STATE_WILL_SEND_LE_CONNECTION_REQUEST:
- case L2CAP_STATE_WAIT_LE_CONNECTION_RESPONSE:
- case L2CAP_STATE_EMIT_OPEN_FAILED_AND_DISCARD:
- return 1;
- case L2CAP_STATE_OPEN:
- case L2CAP_STATE_CLOSED:
- case L2CAP_STATE_WAIT_INCOMING_EXTENDED_FEATURES:
- case L2CAP_STATE_WAIT_DISCONNECT:
- case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_INSUFFICIENT_SECURITY:
- case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE:
- case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT:
- case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
- case L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE:
- case L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_DECLINE:
- case L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_ACCEPT:
- case L2CAP_STATE_INVALID:
- case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE:
- return 0;
- // no default here, to get a warning about new states
- }
- // still, the compiler insists on a return value
- return 0;
- }
- #endif
- #ifdef ENABLE_CLASSIC
- static void l2cap_handle_hci_disconnect_event(l2cap_channel_t * channel){
- if (l2cap_send_open_failed_on_hci_disconnect(channel)){
- l2cap_handle_channel_open_failed(channel, L2CAP_CONNECTION_BASEBAND_DISCONNECT);
- } else {
- l2cap_handle_channel_closed(channel);
- }
- l2cap_free_channel_entry(channel);
- }
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- static void l2cap_handle_hci_le_disconnect_event(l2cap_channel_t * channel){
- if (l2cap_send_open_failed_on_hci_disconnect(channel)){
- l2cap_emit_le_channel_opened(channel, L2CAP_CONNECTION_BASEBAND_DISCONNECT);
- } else {
- l2cap_emit_le_channel_closed(channel);
- }
- l2cap_free_channel_entry(channel);
- }
- #endif
- static void l2cap_hci_event_handler(uint8_t packet_type, uint16_t cid, uint8_t *packet, uint16_t size){
- UNUSED(packet_type); // ok: registered with hci_event_callback_registration
- UNUSED(cid); // ok: there is no channel
- UNUSED(size); // ok: fixed format events read from HCI buffer
-
- #ifdef ENABLE_CLASSIC
- bd_addr_t address;
- hci_connection_t * hci_connection;
- int hci_con_used;
- #endif
- #ifdef L2CAP_USES_CHANNELS
- hci_con_handle_t handle;
- btstack_linked_list_iterator_t it;
- #endif
- switch(hci_event_packet_get_type(packet)){
-
- // Notify channel packet handler if they can send now
- case HCI_EVENT_TRANSPORT_PACKET_SENT:
- case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:
- case BTSTACK_EVENT_NR_CONNECTIONS_CHANGED:
- l2cap_run(); // try sending signaling packets first
- l2cap_notify_channel_can_send();
- break;
- case HCI_EVENT_COMMAND_STATUS:
- #ifdef ENABLE_CLASSIC
- // check command status for create connection for errors
- if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_create_connection)){
- // cache outgoing address and reset
- (void)memcpy(address, l2cap_outgoing_classic_addr, 6);
- memset(l2cap_outgoing_classic_addr, 0, 6);
- // error => outgoing connection failed
- uint8_t status = hci_event_command_status_get_status(packet);
- if (status){
- l2cap_handle_connection_failed_for_addr(address, status);
- }
- }
- #endif
- l2cap_run(); // try sending signaling packets first
- break;
- #ifdef ENABLE_CLASSIC
- // handle connection complete events
- case HCI_EVENT_CONNECTION_COMPLETE:
- reverse_bd_addr(&packet[5], address);
- if (packet[2] == 0){
- handle = little_endian_read_16(packet, 3);
- l2cap_handle_connection_success_for_addr(address, handle);
- } else {
- l2cap_handle_connection_failed_for_addr(address, packet[2]);
- }
- break;
- // handle successful create connection cancel command
- case HCI_EVENT_COMMAND_COMPLETE:
- if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_create_connection_cancel)) {
- if (packet[5] == 0){
- reverse_bd_addr(&packet[6], address);
- // CONNECTION TERMINATED BY LOCAL HOST (0X16)
- l2cap_handle_connection_failed_for_addr(address, 0x16);
- }
- }
- l2cap_run(); // try sending signaling packets first
- break;
- #endif
-
- #ifdef L2CAP_USES_CHANNELS
- // handle disconnection complete events
- case HCI_EVENT_DISCONNECTION_COMPLETE:
- handle = little_endian_read_16(packet, 3);
- // send l2cap open failed or closed events for all channels on this handle and free them
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (channel->con_handle != handle) continue;
- btstack_linked_list_iterator_remove(&it);
- switch(channel->channel_type){
- #ifdef ENABLE_CLASSIC
- case L2CAP_CHANNEL_TYPE_CLASSIC:
- l2cap_handle_hci_disconnect_event(channel);
- break;
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- case L2CAP_CHANNEL_TYPE_LE_DATA_CHANNEL:
- l2cap_handle_hci_le_disconnect_event(channel);
- break;
- #endif
- default:
- break;
- }
- }
- break;
- #endif
- // HCI Connection Timeouts
- #ifdef ENABLE_CLASSIC
- case L2CAP_EVENT_TIMEOUT_CHECK:
- handle = little_endian_read_16(packet, 2);
- if (gap_get_connection_type(handle) != GAP_CONNECTION_ACL) break;
- if (hci_authentication_active_for_handle(handle)) break;
- hci_con_used = 0;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (channel->con_handle != handle) continue;
- hci_con_used = 1;
- break;
- }
- if (hci_con_used) break;
- if (!hci_can_send_command_packet_now()) break;
- hci_send_cmd(&hci_disconnect, handle, 0x13); // remote closed connection
- break;
- case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
- case HCI_EVENT_READ_REMOTE_EXTENDED_FEATURES_COMPLETE:
- handle = little_endian_read_16(packet, 3);
- hci_connection = hci_connection_for_handle(handle);
- if (hci_connection == NULL) break;
- if ((hci_connection->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) == 0) break;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (channel->con_handle != handle) continue;
- log_info("remote supported features, channel %p, cid %04x - state %u", channel, channel->local_cid, channel->state);
- l2cap_handle_remote_supported_features_received(channel);
- }
- break;
- case GAP_EVENT_SECURITY_LEVEL:
- handle = little_endian_read_16(packet, 2);
- log_info("l2cap - security level update for handle 0x%04x", handle);
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (channel->con_handle != handle) continue;
- gap_security_level_t actual_level = (gap_security_level_t) packet[4];
- gap_security_level_t required_level = channel->required_security_level;
- log_info("channel %p, cid %04x - state %u: actual %u >= required %u?", channel, channel->local_cid, channel->state, actual_level, required_level);
- switch (channel->state){
- case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE:
- if (actual_level >= required_level){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // we need to know if ERTM is supported before sending a config response
- hci_connection_t * connection = hci_connection_for_handle(channel->con_handle);
- if (connection->l2cap_state.information_state != L2CAP_INFORMATION_STATE_DONE){
- connection->l2cap_state.information_state = L2CAP_INFORMATION_STATE_W2_SEND_EXTENDED_FEATURE_REQUEST;
- channel->state = L2CAP_STATE_WAIT_INCOMING_EXTENDED_FEATURES;
- break;
- }
- #endif
- channel->state = L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT;
- l2cap_emit_incoming_connection(channel);
- } else {
- channel->reason = 0x0003; // security block
- channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE;
- }
- break;
- case L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE:
- if (actual_level >= required_level){
- l2cap_ready_to_connect(channel);
- } else {
- // disconnnect, authentication not good enough
- hci_disconnect_security_block(handle);
- }
- break;
- default:
- break;
- }
- }
- break;
- #endif
- default:
- break;
- }
-
- l2cap_run();
- }
- static void l2cap_register_signaling_response(hci_con_handle_t handle, uint8_t code, uint8_t sig_id, uint16_t cid, uint16_t data){
- // Vol 3, Part A, 4.3: "The DCID and SCID fields shall be ignored when the result field indi- cates the connection was refused."
- if (signaling_responses_pending < NR_PENDING_SIGNALING_RESPONSES) {
- signaling_responses[signaling_responses_pending].handle = handle;
- signaling_responses[signaling_responses_pending].code = code;
- signaling_responses[signaling_responses_pending].sig_id = sig_id;
- signaling_responses[signaling_responses_pending].cid = cid;
- signaling_responses[signaling_responses_pending].data = data;
- signaling_responses_pending++;
- l2cap_run();
- }
- }
- #ifdef ENABLE_CLASSIC
- static void l2cap_handle_disconnect_request(l2cap_channel_t *channel, uint16_t identifier){
- channel->remote_sig_id = identifier;
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE;
- l2cap_run();
- }
- static void l2cap_handle_connection_request(hci_con_handle_t handle, uint8_t sig_id, uint16_t psm, uint16_t source_cid){
-
- // log_info("l2cap_handle_connection_request for handle %u, psm %u cid 0x%02x", handle, psm, source_cid);
- l2cap_service_t *service = l2cap_get_service(psm);
- if (!service) {
- // 0x0002 PSM not supported
- l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, source_cid, 0x0002);
- return;
- }
-
- hci_connection_t * hci_connection = hci_connection_for_handle( handle );
- if (!hci_connection) {
- //
- log_error("no hci_connection for handle %u", handle);
- return;
- }
- // alloc structure
- // log_info("l2cap_handle_connection_request register channel");
- l2cap_channel_t * channel = l2cap_create_channel_entry(service->packet_handler, L2CAP_CHANNEL_TYPE_CLASSIC, hci_connection->address, BD_ADDR_TYPE_ACL,
- psm, service->mtu, service->required_security_level);
- if (!channel){
- // 0x0004 No resources available
- l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, source_cid, 0x0004);
- return;
- }
- channel->con_handle = handle;
- channel->remote_cid = source_cid;
- channel->remote_sig_id = sig_id;
- // limit local mtu to max acl packet length - l2cap header
- if (channel->local_mtu > l2cap_max_mtu()) {
- channel->local_mtu = l2cap_max_mtu();
- }
-
- // set initial state
- channel->state = L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE;
- channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND | L2CAP_CHANNEL_STATE_VAR_INCOMING);
-
- // add to connections list
- btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel);
- // assert security requirements
- gap_request_security_level(handle, channel->required_security_level);
- }
- void l2cap_accept_connection(uint16_t local_cid){
- log_info("L2CAP_ACCEPT_CONNECTION local_cid 0x%x", local_cid);
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_accept_connection called but local_cid 0x%x not found", local_cid);
- return;
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // configure L2CAP Basic mode
- channel->mode = L2CAP_CHANNEL_MODE_BASIC;
- #endif
- channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT;
- // process
- l2cap_run();
- }
- void l2cap_decline_connection(uint16_t local_cid){
- log_info("L2CAP_DECLINE_CONNECTION local_cid 0x%x", local_cid);
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid( local_cid);
- if (!channel) {
- log_error( "l2cap_decline_connection called but local_cid 0x%x not found", local_cid);
- return;
- }
- channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE;
- channel->reason = 0x04; // no resources available
- l2cap_run();
- }
- // @pre command len is valid, see check in l2cap_signaling_handler_channel
- static void l2cap_signaling_handle_configure_request(l2cap_channel_t *channel, uint8_t *command){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- uint8_t use_fcs = 1;
- #endif
- channel->remote_sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
- uint16_t flags = little_endian_read_16(command, 6);
- if (flags & 1) {
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT);
- }
- // accept the other's configuration options
- uint16_t end_pos = 4 + little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
- uint16_t pos = 8;
- while (pos < end_pos){
- uint8_t option_hint = command[pos] >> 7;
- uint8_t option_type = command[pos] & 0x7f;
- // log_info("l2cap cid %u, hint %u, type %u", channel->local_cid, option_hint, option_type);
- pos++;
- uint8_t length = command[pos++];
- // MTU { type(8): 1, len(8):2, MTU(16) }
- if ((option_type == L2CAP_CONFIG_OPTION_TYPE_MAX_TRANSMISSION_UNIT) && (length == 2)){
- channel->remote_mtu = little_endian_read_16(command, pos);
- log_info("Remote MTU %u", channel->remote_mtu);
- if (channel->remote_mtu > l2cap_max_mtu()){
- log_info("Remote MTU %u larger than outgoing buffer, only using MTU = %u", channel->remote_mtu, l2cap_max_mtu());
- channel->remote_mtu = l2cap_max_mtu();
- }
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU);
- }
- // Flush timeout { type(8):2, len(8): 2, Flush Timeout(16)}
- if ((option_type == L2CAP_CONFIG_OPTION_TYPE_FLUSH_TIMEOUT) && (length == 2)){
- channel->flush_timeout = little_endian_read_16(command, pos);
- log_info("Flush timeout: %u ms", channel->flush_timeout);
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // Retransmission and Flow Control Option
- if (option_type == L2CAP_CONFIG_OPTION_TYPE_RETRANSMISSION_AND_FLOW_CONTROL && length == 9){
- l2cap_channel_mode_t mode = (l2cap_channel_mode_t) command[pos];
- switch(channel->mode){
- case L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION:
- // Store remote config
- channel->remote_tx_window_size = command[pos+1];
- channel->remote_max_transmit = command[pos+2];
- channel->remote_retransmission_timeout_ms = little_endian_read_16(command, pos + 3);
- channel->remote_monitor_timeout_ms = little_endian_read_16(command, pos + 5);
- channel->remote_mps = little_endian_read_16(command, pos + 7);
- log_info("FC&C config: tx window: %u, max transmit %u, retrans timeout %u, monitor timeout %u, mps %u",
- channel->remote_tx_window_size,
- channel->remote_max_transmit,
- channel->remote_retransmission_timeout_ms,
- channel->remote_monitor_timeout_ms,
- channel->remote_mps);
- // If ERTM mandatory, but remote doens't offer ERTM -> disconnect
- if (channel->ertm_mandatory && mode != L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- } else {
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_ERTM);
- }
- break;
- case L2CAP_CHANNEL_MODE_BASIC:
- switch (mode){
- case L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION:
- // remote asks for ERTM, but we want basic mode. disconnect if this happens a second time
- if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_BASIC_FALLBACK_TRIED){
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- }
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_BASIC_FALLBACK_TRIED);
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_REJECTED);
- break;
- default: // case L2CAP_CHANNEL_MODE_BASIC:
- // TODO store and evaluate configuration
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_ERTM);
- break;
- }
- break;
- default:
- break;
- }
- }
- if (option_type == L2CAP_CONFIG_OPTION_TYPE_FRAME_CHECK_SEQUENCE && length == 1){
- use_fcs = command[pos];
- }
- #endif
- // check for unknown options
- if ((option_hint == 0) && ((option_type < L2CAP_CONFIG_OPTION_TYPE_MAX_TRANSMISSION_UNIT) || (option_type > L2CAP_CONFIG_OPTION_TYPE_EXTENDED_WINDOW_SIZE))){
- log_info("l2cap cid %u, unknown options", channel->local_cid);
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID);
- }
- pos += length;
- }
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // "FCS" has precedence over "No FCS"
- uint8_t update = channel->fcs_option || use_fcs;
- log_info("local fcs: %u, remote fcs: %u -> %u", channel->fcs_option, use_fcs, update);
- channel->fcs_option = update;
- // If ERTM mandatory, but remote didn't send Retransmission and Flowcontrol options -> disconnect
- if (((channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_ERTM) == 0) & (channel->ertm_mandatory)){
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- }
- #endif
- }
- // @pre command len is valid, see check in l2cap_signaling_handler_channel
- static void l2cap_signaling_handle_configure_response(l2cap_channel_t *channel, uint8_t result, uint8_t *command){
- log_info("l2cap_signaling_handle_configure_response");
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- uint16_t end_pos = 4 + little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
- uint16_t pos = 10;
- while (pos < end_pos){
- uint8_t option_hint = command[pos] >> 7;
- uint8_t option_type = command[pos] & 0x7f;
- // log_info("l2cap cid %u, hint %u, type %u", channel->local_cid, option_hint, option_type);
- pos++;
- uint8_t length = command[pos++];
- // Retransmission and Flow Control Option
- if (option_type == L2CAP_CONFIG_OPTION_TYPE_RETRANSMISSION_AND_FLOW_CONTROL && length == 9){
- switch (channel->mode){
- case L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION:
- if (channel->ertm_mandatory){
- // ??
- } else {
- // On 'Reject - Unacceptable Parameters' to our optional ERTM request, fall back to BASIC mode
- if (result == L2CAP_CONF_RESULT_UNACCEPTABLE_PARAMETERS){
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_ERTM_BUFFER_RELEASED);
- channel->mode = L2CAP_CHANNEL_MODE_BASIC;
- }
- }
- break;
- case L2CAP_CHANNEL_MODE_BASIC:
- if (result == L2CAP_CONF_RESULT_UNACCEPTABLE_PARAMETERS){
- // On 'Reject - Unacceptable Parameters' to our Basic mode request, disconnect
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- }
- break;
- default:
- break;
- }
- }
- // check for unknown options
- if (option_hint == 0 && (option_type < L2CAP_CONFIG_OPTION_TYPE_MAX_TRANSMISSION_UNIT || option_type > L2CAP_CONFIG_OPTION_TYPE_EXTENDED_WINDOW_SIZE)){
- log_info("l2cap cid %u, unknown options", channel->local_cid);
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID);
- }
- pos += length;
- }
- #else
- UNUSED(channel); // ok: no code
- UNUSED(result); // ok: no code
- UNUSED(command); // ok: no code
- #endif
- }
- static int l2cap_channel_ready_for_open(l2cap_channel_t *channel){
- // log_info("l2cap_channel_ready_for_open 0x%02x", channel->state_var);
- if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP) == 0) return 0;
- if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP) == 0) return 0;
- // addition check that fixes re-entrance issue causing l2cap event channel opened twice
- if (channel->state == L2CAP_STATE_OPEN) return 0;
- return 1;
- }
- // @pre command len is valid, see check in l2cap_signaling_handler_dispatch
- static void l2cap_signaling_handler_channel(l2cap_channel_t *channel, uint8_t *command){
- uint8_t code = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
- uint8_t identifier = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
- uint16_t cmd_len = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
- uint16_t result = 0;
-
- log_info("L2CAP signaling handler code %u, state %u", code, channel->state);
-
- // handle DISCONNECT REQUESTS seperately
- if (code == DISCONNECTION_REQUEST){
- switch (channel->state){
- case L2CAP_STATE_CONFIG:
- case L2CAP_STATE_OPEN:
- case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
- case L2CAP_STATE_WAIT_DISCONNECT:
- l2cap_handle_disconnect_request(channel, identifier);
- break;
- default:
- // ignore in other states
- break;
- }
- return;
- }
-
- // @STATEMACHINE(l2cap)
- switch (channel->state) {
-
- case L2CAP_STATE_WAIT_CONNECT_RSP:
- switch (code){
- case CONNECTION_RESPONSE:
- if (cmd_len < 8){
- // command imcomplete
- l2cap_register_signaling_response(channel->con_handle, COMMAND_REJECT, identifier, 0, L2CAP_REJ_CMD_UNKNOWN);
- break;
- }
- l2cap_stop_rtx(channel);
- result = little_endian_read_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
- switch (result) {
- case 0:
- // successful connection
- channel->remote_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
- channel->state = L2CAP_STATE_CONFIG;
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
- break;
- case 1:
- // connection pending. get some coffee, but start the ERTX
- l2cap_start_ertx(channel);
- break;
- default:
- // channel closed
- channel->state = L2CAP_STATE_CLOSED;
- // map l2cap connection response result to BTstack status enumeration
- l2cap_handle_channel_open_failed(channel, L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result);
-
- // drop link key if security block
- if ((L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result) == L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_SECURITY){
- gap_drop_link_key_for_bd_addr(channel->address);
- }
-
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- break;
- }
- break;
-
- default:
- //@TODO: implement other signaling packets
- break;
- }
- break;
- case L2CAP_STATE_CONFIG:
- switch (code) {
- case CONFIGURE_REQUEST:
- if (cmd_len < 4){
- // command incomplete
- l2cap_register_signaling_response(channel->con_handle, COMMAND_REJECT, identifier, 0, L2CAP_REJ_CMD_UNKNOWN);
- break;
- }
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP);
- l2cap_signaling_handle_configure_request(channel, command);
- if (!(channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT)){
- // only done if continuation not set
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_REQ);
- }
- break;
- case CONFIGURE_RESPONSE:
- if (cmd_len < 6){
- // command incomplete
- l2cap_register_signaling_response(channel->con_handle, COMMAND_REJECT, identifier, 0, L2CAP_REJ_CMD_UNKNOWN);
- break;
- }
- result = little_endian_read_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
- l2cap_stop_rtx(channel);
- l2cap_signaling_handle_configure_response(channel, result, command);
- switch (result){
- case 0: // success
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP);
- break;
- case 4: // pending
- l2cap_start_ertx(channel);
- break;
- default:
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION && channel->ertm_mandatory){
- // remote does not offer ertm but it's required
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- break;
- }
- #endif
- // retry on negative result
- channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
- break;
- }
- break;
- default:
- break;
- }
- if (l2cap_channel_ready_for_open(channel)){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- // assert that packet can be stored in fragment buffers in ertm
- if (channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- uint16_t effective_mps = btstack_min(channel->remote_mps, channel->local_mps);
- uint16_t usable_mtu = channel->num_tx_buffers == 1 ? effective_mps : channel->num_tx_buffers * effective_mps - 2;
- if (usable_mtu < channel->remote_mtu){
- log_info("Remote MTU %u > max storable ERTM packet, only using MTU = %u", channel->remote_mtu, usable_mtu);
- channel->remote_mtu = usable_mtu;
- }
- }
- #endif
- // for open:
- channel->state = L2CAP_STATE_OPEN;
- l2cap_emit_channel_opened(channel, 0);
- }
- break;
-
- case L2CAP_STATE_WAIT_DISCONNECT:
- switch (code) {
- case DISCONNECTION_RESPONSE:
- l2cap_finialize_channel_close(channel);
- break;
- default:
- //@TODO: implement other signaling packets
- break;
- }
- break;
-
- case L2CAP_STATE_CLOSED:
- // @TODO handle incoming requests
- break;
-
- case L2CAP_STATE_OPEN:
- //@TODO: implement other signaling packets, e.g. re-configure
- break;
- default:
- break;
- }
- // log_info("new state %u", channel->state);
- }
- // @pre command len is valid, see check in l2cap_acl_classic_handler
- static void l2cap_signaling_handler_dispatch(hci_con_handle_t handle, uint8_t * command){
-
- btstack_linked_list_iterator_t it;
- // get code, signalind identifier and command len
- uint8_t code = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
- uint8_t sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
- uint16_t cmd_len = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
- // not for a particular channel, and not CONNECTION_REQUEST, ECHO_[REQUEST|RESPONSE], INFORMATION_RESPONSE
- if ((code < 1) || (code == ECHO_RESPONSE) || (code > INFORMATION_RESPONSE)){
- l2cap_register_signaling_response(handle, COMMAND_REJECT, sig_id, 0, L2CAP_REJ_CMD_UNKNOWN);
- return;
- }
- // general commands without an assigned channel
- switch(code) {
-
- case CONNECTION_REQUEST:
- if (cmd_len == 4){
- uint16_t psm = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
- uint16_t source_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+2);
- l2cap_handle_connection_request(handle, sig_id, psm, source_cid);
- } else {
- l2cap_register_signaling_response(handle, COMMAND_REJECT, sig_id, 0, L2CAP_REJ_CMD_UNKNOWN);
- }
- return;
-
- case ECHO_REQUEST:
- l2cap_register_signaling_response(handle, code, sig_id, 0, 0);
- return;
-
- case INFORMATION_REQUEST:
- if (cmd_len == 2) {
- uint16_t info_type = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
- l2cap_register_signaling_response(handle, code, sig_id, 0, info_type);
- } else {
- l2cap_register_signaling_response(handle, COMMAND_REJECT, sig_id, 0, L2CAP_REJ_CMD_UNKNOWN);
- }
- return;
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- case INFORMATION_RESPONSE: {
- hci_connection_t * connection = hci_connection_for_handle(handle);
- if (!connection) return;
- if (connection->l2cap_state.information_state != L2CAP_INFORMATION_STATE_W4_EXTENDED_FEATURE_RESPONSE) return;
- // get extended features from response if valid
- connection->l2cap_state.extended_feature_mask = 0;
- if (cmd_len >= 6) {
- uint16_t info_type = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
- uint16_t result = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+2);
- if (result == 0 && info_type == L2CAP_INFO_TYPE_EXTENDED_FEATURES_SUPPORTED) {
- connection->l2cap_state.extended_feature_mask = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
- }
- }
- connection->l2cap_state.information_state = L2CAP_INFORMATION_STATE_DONE;
- log_info("extended features mask 0x%02x", connection->l2cap_state.extended_feature_mask);
- // trigger connection request
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (channel->con_handle != handle) continue;
- // incoming connection: ask user for channel configuration, esp. if ertm will be mandatory
- if (channel->state == L2CAP_STATE_WAIT_INCOMING_EXTENDED_FEATURES){
- channel->state = L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT;
- l2cap_emit_incoming_connection(channel);
- continue;
- }
- // outgoing connection
- if (channel->state == L2CAP_STATE_WAIT_OUTGOING_EXTENDED_FEATURES){
- // if ERTM was requested, but is not listed in extended feature mask:
- if ((channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION) && ((connection->l2cap_state.extended_feature_mask & 0x08) == 0)){
- if (channel->ertm_mandatory){
- // bail if ERTM is mandatory
- channel->state = L2CAP_STATE_CLOSED;
- // map l2cap connection response result to BTstack status enumeration
- l2cap_handle_channel_open_failed(channel, L2CAP_CONNECTION_RESPONSE_RESULT_ERTM_NOT_SUPPORTED);
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- continue;
- } else {
- // fallback to Basic mode
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_ERTM_BUFFER_RELEASED);
- channel->mode = L2CAP_CHANNEL_MODE_BASIC;
- }
- }
- // respond to connection request
- channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST;
- continue;
- }
- }
- return;
- }
- #endif
- default:
- break;
- }
-
- // Get potential destination CID
- uint16_t dest_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
-
- // Find channel for this sig_id and connection handle
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(channel->channel_type)) continue;
- if (channel->con_handle != handle) continue;
- if (code & 1) {
- // match odd commands (responses) by previous signaling identifier
- if (channel->local_sig_id == sig_id) {
- l2cap_signaling_handler_channel(channel, command);
- break;
- }
- } else {
- // match even commands (requests) by local channel id
- if (channel->local_cid == dest_cid) {
- l2cap_signaling_handler_channel(channel, command);
- break;
- }
- }
- }
- }
- #endif
- #ifdef ENABLE_BLE
- static void l2cap_emit_connection_parameter_update_response(hci_con_handle_t con_handle, uint16_t result){
- uint8_t event[6];
- event[0] = L2CAP_EVENT_CONNECTION_PARAMETER_UPDATE_RESPONSE;
- event[1] = 4;
- little_endian_store_16(event, 2, con_handle);
- little_endian_store_16(event, 4, result);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- if (!l2cap_event_packet_handler) return;
- (*l2cap_event_packet_handler)(HCI_EVENT_PACKET, 0, event, sizeof(event));
- }
- // @returns valid
- static int l2cap_le_signaling_handler_dispatch(hci_con_handle_t handle, uint8_t * command, uint8_t sig_id){
- hci_connection_t * connection;
- uint16_t result;
- uint8_t event[12];
- #ifdef ENABLE_LE_DATA_CHANNELS
- btstack_linked_list_iterator_t it;
- l2cap_channel_t * channel;
- uint16_t local_cid;
- uint16_t le_psm;
- uint16_t new_credits;
- uint16_t credits_before;
- l2cap_service_t * service;
- uint16_t source_cid;
- #endif
- uint8_t code = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
- uint16_t len = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
- log_info("l2cap_le_signaling_handler_dispatch: command 0x%02x, sig id %u, len %u", code, sig_id, len);
- switch (code){
- case CONNECTION_PARAMETER_UPDATE_REQUEST:
- // check size
- if (len < 8u) return 0u;
- connection = hci_connection_for_handle(handle);
- if (connection){
- if (connection->role != HCI_ROLE_MASTER){
- // reject command without notifying upper layer when not in master role
- return 0;
- }
- le_connection_parameter_range_t existing_range;
- gap_get_connection_parameter_range(&existing_range);
- uint16_t le_conn_interval_min = little_endian_read_16(command,L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
- uint16_t le_conn_interval_max = little_endian_read_16(command,L2CAP_SIGNALING_COMMAND_DATA_OFFSET+2);
- uint16_t le_conn_latency = little_endian_read_16(command,L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
- uint16_t le_supervision_timeout = little_endian_read_16(command,L2CAP_SIGNALING_COMMAND_DATA_OFFSET+6);
- int update_parameter = gap_connection_parameter_range_included(&existing_range, le_conn_interval_min, le_conn_interval_max, le_conn_latency, le_supervision_timeout);
- if (update_parameter){
- connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_RESPONSE;
- connection->le_conn_interval_min = le_conn_interval_min;
- connection->le_conn_interval_max = le_conn_interval_max;
- connection->le_conn_latency = le_conn_latency;
- connection->le_supervision_timeout = le_supervision_timeout;
- } else {
- connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_DENY;
- }
- connection->le_con_param_update_identifier = sig_id;
- }
- if (!l2cap_event_packet_handler) break;
- event[0] = L2CAP_EVENT_CONNECTION_PARAMETER_UPDATE_REQUEST;
- event[1] = 8;
- little_endian_store_16(event, 2, handle);
- (void)memcpy(&event[4], &command[4], 8);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- (*l2cap_event_packet_handler)( HCI_EVENT_PACKET, 0, event, sizeof(event));
- break;
- case CONNECTION_PARAMETER_UPDATE_RESPONSE:
- // check size
- if (len < 2u) return 0u;
- result = little_endian_read_16(command, 4);
- l2cap_emit_connection_parameter_update_response(handle, result);
- break;
- #ifdef ENABLE_LE_DATA_CHANNELS
- case COMMAND_REJECT:
- // Find channel for this sig_id and connection handle
- channel = NULL;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * a_channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(a_channel->channel_type)) continue;
- if (a_channel->con_handle != handle) continue;
- if (a_channel->local_sig_id != sig_id) continue;
- channel = a_channel;
- break;
- }
- if (!channel) break;
- // if received while waiting for le connection response, assume legacy device
- if (channel->state == L2CAP_STATE_WAIT_LE_CONNECTION_RESPONSE){
- channel->state = L2CAP_STATE_CLOSED;
- // no official value for this, use: Connection refused – LE_PSM not supported - 0x0002
- l2cap_emit_le_channel_opened(channel, 0x0002);
-
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- break;
- }
- break;
- case LE_CREDIT_BASED_CONNECTION_REQUEST:
- // check size
- if (len < 10u) return 0u;
- // get hci connection, bail if not found (must not happen)
- connection = hci_connection_for_handle(handle);
- if (!connection) return 0;
- // check if service registered
- le_psm = little_endian_read_16(command, 4);
- service = l2cap_le_get_service(le_psm);
- source_cid = little_endian_read_16(command, 6);
-
- if (service){
- if (source_cid < 0x40u){
- // 0x0009 Connection refused - Invalid Source CID
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0009);
- return 1;
- }
- // go through list of channels for this ACL connection and check if we get a match
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * a_channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(a_channel->channel_type)) continue;
- if (a_channel->con_handle != handle) continue;
- if (a_channel->remote_cid != source_cid) continue;
- // 0x000a Connection refused - Source CID already allocated
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x000a);
- return 1;
- }
- // security: check encryption
- if (service->required_security_level >= LEVEL_2){
- if (gap_encryption_key_size(handle) == 0){
- // 0x0008 Connection refused - insufficient encryption
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0008);
- return 1;
- }
- // anything less than 16 byte key size is insufficient
- if (gap_encryption_key_size(handle) < 16){
- // 0x0007 Connection refused – insufficient encryption key size
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0007);
- return 1;
- }
- }
- // security: check authencation
- if (service->required_security_level >= LEVEL_3){
- if (!gap_authenticated(handle)){
- // 0x0005 Connection refused – insufficient authentication
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0005);
- return 1;
- }
- }
- // security: check authorization
- if (service->required_security_level >= LEVEL_4){
- if (gap_authorization_state(handle) != AUTHORIZATION_GRANTED){
- // 0x0006 Connection refused – insufficient authorization
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0006);
- return 1;
- }
- }
- // allocate channel
- channel = l2cap_create_channel_entry(service->packet_handler, L2CAP_CHANNEL_TYPE_LE_DATA_CHANNEL, connection->address,
- BD_ADDR_TYPE_LE_RANDOM, le_psm, service->mtu, service->required_security_level);
- if (!channel){
- // 0x0004 Connection refused – no resources available
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0004);
- return 1;
- }
- channel->con_handle = handle;
- channel->remote_cid = source_cid;
- channel->remote_sig_id = sig_id;
- channel->remote_mtu = little_endian_read_16(command, 8);
- channel->remote_mps = little_endian_read_16(command, 10);
- channel->credits_outgoing = little_endian_read_16(command, 12);
- // set initial state
- channel->state = L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT;
- channel->state_var |= L2CAP_CHANNEL_STATE_VAR_INCOMING;
- // add to connections list
- btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel);
- // post connection request event
- l2cap_emit_le_incoming_connection(channel);
- } else {
- // Connection refused – LE_PSM not supported
- l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0002);
- }
- break;
- case LE_CREDIT_BASED_CONNECTION_RESPONSE:
- // check size
- if (len < 10u) return 0u;
- // Find channel for this sig_id and connection handle
- channel = NULL;
- btstack_linked_list_iterator_init(&it, &l2cap_channels);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_channel_t * a_channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
- if (!l2cap_is_dynamic_channel_type(a_channel->channel_type)) continue;
- if (a_channel->con_handle != handle) continue;
- if (a_channel->local_sig_id != sig_id) continue;
- channel = a_channel;
- break;
- }
- if (!channel) break;
- // cid + 0
- result = little_endian_read_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+8);
- if (result){
- channel->state = L2CAP_STATE_CLOSED;
- // map l2cap connection response result to BTstack status enumeration
- l2cap_emit_le_channel_opened(channel, result);
-
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- break;
- }
- // success
- channel->remote_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 0);
- channel->remote_mtu = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 2);
- channel->remote_mps = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 4);
- channel->credits_outgoing = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 6);
- channel->state = L2CAP_STATE_OPEN;
- l2cap_emit_le_channel_opened(channel, result);
- break;
- case LE_FLOW_CONTROL_CREDIT:
- // check size
- if (len < 4u) return 0u;
- // find channel
- local_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 0);
- channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap: no channel for cid 0x%02x", local_cid);
- break;
- }
- new_credits = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 2);
- credits_before = channel->credits_outgoing;
- channel->credits_outgoing += new_credits;
- // check for credit overrun
- if (credits_before > channel->credits_outgoing){
- log_error("l2cap: new credits caused overrrun for cid 0x%02x, disconnecting", local_cid);
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- break;
- }
- log_info("l2cap: %u credits for 0x%02x, now %u", new_credits, local_cid, channel->credits_outgoing);
- break;
- case DISCONNECTION_REQUEST:
- // check size
- if (len < 4u) return 0u;
- // find channel
- local_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 0);
- channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap: no channel for cid 0x%02x", local_cid);
- break;
- }
- channel->remote_sig_id = sig_id;
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE;
- break;
- #endif
- case DISCONNECTION_RESPONSE:
- break;
- default:
- // command unknown -> reject command
- return 0;
- }
- return 1;
- }
- #endif
- #ifdef ENABLE_CLASSIC
- static void l2cap_acl_classic_handler_for_channel(l2cap_channel_t * l2cap_channel, uint8_t * packet, uint16_t size){
- #ifdef ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
- if (l2cap_channel->mode == L2CAP_CHANNEL_MODE_ENHANCED_RETRANSMISSION){
- int fcs_size = l2cap_channel->fcs_option ? 2 : 0;
- // assert control + FCS fields are inside
- if (size < COMPLETE_L2CAP_HEADER+2+fcs_size) return;
- if (l2cap_channel->fcs_option){
- // verify FCS (required if one side requested it)
- uint16_t fcs_calculated = crc16_calc(&packet[4], size - (4+2));
- uint16_t fcs_packet = little_endian_read_16(packet, size-2);
- #ifdef L2CAP_ERTM_SIMULATE_FCS_ERROR_INTERVAL
- // simulate fcs error
- static int counter = 0;
- if (++counter == L2CAP_ERTM_SIMULATE_FCS_ERROR_INTERVAL) {
- log_info("Simulate fcs error");
- fcs_calculated++;
- counter = 0;
- }
- #endif
- if (fcs_calculated == fcs_packet){
- log_info("Packet FCS 0x%04x verified", fcs_packet);
- } else {
- log_error("FCS mismatch! Packet 0x%04x, calculated 0x%04x", fcs_packet, fcs_calculated);
- // ERTM State Machine in Bluetooth Spec does not handle 'I-Frame with invalid FCS'
- return;
- }
- }
- // switch on packet type
- uint16_t control = little_endian_read_16(packet, COMPLETE_L2CAP_HEADER);
- uint8_t req_seq = (control >> 8) & 0x3f;
- int final = (control >> 7) & 0x01;
- if (control & 1){
- // S-Frame
- int poll = (control >> 4) & 0x01;
- l2cap_supervisory_function_t s = (l2cap_supervisory_function_t) ((control >> 2) & 0x03);
- log_info("Control: 0x%04x => Supervisory function %u, ReqSeq %02u", control, (int) s, req_seq);
- l2cap_ertm_tx_packet_state_t * tx_state;
- switch (s){
- case L2CAP_SUPERVISORY_FUNCTION_RR_RECEIVER_READY:
- log_info("L2CAP_SUPERVISORY_FUNCTION_RR_RECEIVER_READY");
- l2cap_ertm_process_req_seq(l2cap_channel, req_seq);
- if (poll && final){
- // S-frames shall not be transmitted with both the F-bit and the P-bit set to 1 at the same time.
- log_error("P=F=1 in S-Frame");
- break;
- }
- if (poll){
- // check if we did request selective retransmission before <==> we have stored SDU segments
- int i;
- int num_stored_out_of_order_packets = 0;
- for (i=0;i<l2cap_channel->num_rx_buffers;i++){
- int index = l2cap_channel->rx_store_index + i;
- if (index >= l2cap_channel->num_rx_buffers){
- index -= l2cap_channel->num_rx_buffers;
- }
- l2cap_ertm_rx_packet_state_t * rx_state = &l2cap_channel->rx_packets_state[index];
- if (!rx_state->valid) continue;
- num_stored_out_of_order_packets++;
- }
- if (num_stored_out_of_order_packets){
- l2cap_channel->send_supervisor_frame_selective_reject = 1;
- } else {
- l2cap_channel->send_supervisor_frame_receiver_ready = 1;
- }
- l2cap_channel->set_final_bit_after_packet_with_poll_bit_set = 1;
- }
- if (final){
- // Stop-MonitorTimer
- l2cap_ertm_stop_monitor_timer(l2cap_channel);
- // If UnackedFrames > 0 then Start-RetransTimer
- if (l2cap_channel->unacked_frames){
- l2cap_ertm_start_retransmission_timer(l2cap_channel);
- }
- // final bit set <- response to RR with poll bit set. All not acknowledged packets need to be retransmitted
- l2cap_ertm_retransmit_unacknowleded_frames(l2cap_channel);
- }
- break;
- case L2CAP_SUPERVISORY_FUNCTION_REJ_REJECT:
- log_info("L2CAP_SUPERVISORY_FUNCTION_REJ_REJECT");
- l2cap_ertm_process_req_seq(l2cap_channel, req_seq);
- // restart transmittion from last unacknowledted packet (earlier packets already freed in l2cap_ertm_process_req_seq)
- l2cap_ertm_retransmit_unacknowleded_frames(l2cap_channel);
- break;
- case L2CAP_SUPERVISORY_FUNCTION_RNR_RECEIVER_NOT_READY:
- log_error("L2CAP_SUPERVISORY_FUNCTION_RNR_RECEIVER_NOT_READY");
- break;
- case L2CAP_SUPERVISORY_FUNCTION_SREJ_SELECTIVE_REJECT:
- log_info("L2CAP_SUPERVISORY_FUNCTION_SREJ_SELECTIVE_REJECT");
- if (poll){
- l2cap_ertm_process_req_seq(l2cap_channel, req_seq);
- }
- // find requested i-frame
- tx_state = l2cap_ertm_get_tx_state(l2cap_channel, req_seq);
- if (tx_state){
- log_info("Retransmission for tx_seq %u requested", req_seq);
- l2cap_channel->set_final_bit_after_packet_with_poll_bit_set = poll;
- tx_state->retransmission_requested = 1;
- l2cap_channel->srej_active = 1;
- }
- break;
- default:
- break;
- }
- } else {
- // I-Frame
- // get control
- l2cap_segmentation_and_reassembly_t sar = (l2cap_segmentation_and_reassembly_t) (control >> 14);
- uint8_t tx_seq = (control >> 1) & 0x3f;
- log_info("Control: 0x%04x => SAR %u, ReqSeq %02u, R?, TxSeq %02u", control, (int) sar, req_seq, tx_seq);
- log_info("SAR: pos %u", l2cap_channel->reassembly_pos);
- log_info("State: expected_tx_seq %02u, req_seq %02u", l2cap_channel->expected_tx_seq, l2cap_channel->req_seq);
- l2cap_ertm_process_req_seq(l2cap_channel, req_seq);
- if (final){
- // final bit set <- response to RR with poll bit set. All not acknowledged packets need to be retransmitted
- l2cap_ertm_retransmit_unacknowleded_frames(l2cap_channel);
- }
- // get SDU
- const uint8_t * payload_data = &packet[COMPLETE_L2CAP_HEADER+2];
- uint16_t payload_len = size-(COMPLETE_L2CAP_HEADER+2+fcs_size);
- // assert SDU size is smaller or equal to our buffers
- uint16_t max_payload_size = 0;
- switch (sar){
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_UNSEGMENTED_L2CAP_SDU:
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_START_OF_L2CAP_SDU:
- // SDU Length + MPS
- max_payload_size = l2cap_channel->local_mps + 2;
- break;
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_CONTINUATION_OF_L2CAP_SDU:
- case L2CAP_SEGMENTATION_AND_REASSEMBLY_END_OF_L2CAP_SDU:
- max_payload_size = l2cap_channel->local_mps;
- break;
- }
- if (payload_len > max_payload_size){
- log_info("payload len %u > max payload %u -> drop packet", payload_len, max_payload_size);
- return;
- }
- // check ordering
- if (l2cap_channel->expected_tx_seq == tx_seq){
- log_info("Received expected frame with TxSeq == ExpectedTxSeq == %02u", tx_seq);
- l2cap_channel->expected_tx_seq = l2cap_next_ertm_seq_nr(l2cap_channel->expected_tx_seq);
- l2cap_channel->req_seq = l2cap_channel->expected_tx_seq;
- // process SDU
- l2cap_ertm_handle_in_sequence_sdu(l2cap_channel, sar, payload_data, payload_len);
- // process stored segments
- while (true){
- int index = l2cap_channel->rx_store_index;
- l2cap_ertm_rx_packet_state_t * rx_state = &l2cap_channel->rx_packets_state[index];
- if (!rx_state->valid) break;
- log_info("Processing stored frame with TxSeq == ExpectedTxSeq == %02u", l2cap_channel->expected_tx_seq);
- l2cap_channel->expected_tx_seq = l2cap_next_ertm_seq_nr(l2cap_channel->expected_tx_seq);
- l2cap_channel->req_seq = l2cap_channel->expected_tx_seq;
- rx_state->valid = 0;
- l2cap_ertm_handle_in_sequence_sdu(l2cap_channel, rx_state->sar, &l2cap_channel->rx_packets_data[index], rx_state->len);
- // update rx store index
- index++;
- if (index >= l2cap_channel->num_rx_buffers){
- index = 0;
- }
- l2cap_channel->rx_store_index = index;
- }
- //
- l2cap_channel->send_supervisor_frame_receiver_ready = 1;
- } else {
- int delta = (tx_seq - l2cap_channel->expected_tx_seq) & 0x3f;
- if (delta < 2){
- // store segment
- l2cap_ertm_handle_out_of_sequence_sdu(l2cap_channel, sar, delta, payload_data, payload_len);
- log_info("Received unexpected frame TxSeq %u but expected %u -> send S-SREJ", tx_seq, l2cap_channel->expected_tx_seq);
- l2cap_channel->send_supervisor_frame_selective_reject = 1;
- } else {
- log_info("Received unexpected frame TxSeq %u but expected %u -> send S-REJ", tx_seq, l2cap_channel->expected_tx_seq);
- l2cap_channel->send_supervisor_frame_reject = 1;
- }
- }
- }
- return;
- }
- #endif
- l2cap_dispatch_to_channel(l2cap_channel, L2CAP_DATA_PACKET, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
- }
- #endif
- static void l2cap_acl_classic_handler(hci_con_handle_t handle, uint8_t *packet, uint16_t size){
- #ifdef ENABLE_CLASSIC
- l2cap_channel_t * l2cap_channel;
- l2cap_fixed_channel_t * l2cap_fixed_channel;
- uint16_t channel_id = READ_L2CAP_CHANNEL_ID(packet);
- switch (channel_id) {
-
- case L2CAP_CID_SIGNALING: {
- uint32_t command_offset = 8;
- while ((command_offset + L2CAP_SIGNALING_COMMAND_DATA_OFFSET) < size) {
- // assert signaling command is fully inside packet
- uint16_t data_len = little_endian_read_16(packet, command_offset + L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
- uint32_t next_command_offset = command_offset + L2CAP_SIGNALING_COMMAND_DATA_OFFSET + data_len;
- if (next_command_offset > size){
- log_error("l2cap signaling command len invalid -> drop");
- break;
- }
- // handle signaling command
- l2cap_signaling_handler_dispatch(handle, &packet[command_offset]);
- // go to next command
- command_offset = next_command_offset;
- }
- break;
- }
- case L2CAP_CID_CONNECTIONLESS_CHANNEL:
- l2cap_fixed_channel = l2cap_fixed_channel_for_channel_id(L2CAP_CID_CONNECTIONLESS_CHANNEL);
- if (!l2cap_fixed_channel) break;
- if (!l2cap_fixed_channel->packet_handler) break;
- (*l2cap_fixed_channel->packet_handler)(UCD_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
- break;
- default:
- // Find channel for this channel_id and connection handle
- l2cap_channel = l2cap_get_channel_for_local_cid(channel_id);
- if (l2cap_channel) {
- l2cap_acl_classic_handler_for_channel(l2cap_channel, packet, size);
- }
- break;
- }
- #else
- UNUSED(handle); // ok: no code
- UNUSED(packet); // ok: no code
- UNUSED(size); // ok: no code
- #endif
- }
- static void l2cap_acl_le_handler(hci_con_handle_t handle, uint8_t *packet, uint16_t size){
- #ifdef ENABLE_BLE
- l2cap_fixed_channel_t * l2cap_fixed_channel;
- #ifdef ENABLE_LE_DATA_CHANNELS
- l2cap_channel_t * l2cap_channel;
- #endif
- uint16_t channel_id = READ_L2CAP_CHANNEL_ID(packet);
- switch (channel_id) {
- case L2CAP_CID_SIGNALING_LE: {
- uint16_t sig_id = packet[COMPLETE_L2CAP_HEADER + 1];
- uint16_t len = little_endian_read_16(packet, COMPLETE_L2CAP_HEADER + 2);
- if ((COMPLETE_L2CAP_HEADER + 4u + len) > size) break;
- int valid = l2cap_le_signaling_handler_dispatch(handle, &packet[COMPLETE_L2CAP_HEADER], sig_id);
- if (!valid){
- l2cap_register_signaling_response(handle, COMMAND_REJECT_LE, sig_id, 0, L2CAP_REJ_CMD_UNKNOWN);
- }
- break;
- }
- case L2CAP_CID_ATTRIBUTE_PROTOCOL:
- l2cap_fixed_channel = l2cap_fixed_channel_for_channel_id(L2CAP_CID_ATTRIBUTE_PROTOCOL);
- if (!l2cap_fixed_channel) break;
- if (!l2cap_fixed_channel->packet_handler) break;
- (*l2cap_fixed_channel->packet_handler)(ATT_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
- break;
- case L2CAP_CID_SECURITY_MANAGER_PROTOCOL:
- l2cap_fixed_channel = l2cap_fixed_channel_for_channel_id(L2CAP_CID_SECURITY_MANAGER_PROTOCOL);
- if (!l2cap_fixed_channel) break;
- if (!l2cap_fixed_channel->packet_handler) break;
- (*l2cap_fixed_channel->packet_handler)(SM_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
- break;
- default:
- #ifdef ENABLE_LE_DATA_CHANNELS
- l2cap_channel = l2cap_get_channel_for_local_cid(channel_id);
- if (l2cap_channel) {
- // credit counting
- if (l2cap_channel->credits_incoming == 0u){
- log_error("LE Data Channel packet received but no incoming credits");
- l2cap_channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- break;
- }
- l2cap_channel->credits_incoming--;
- // automatic credits
- if ((l2cap_channel->credits_incoming < L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_WATERMARK) && l2cap_channel->automatic_credits){
- l2cap_channel->new_credits_incoming = L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_INCREMENT;
- }
- // first fragment
- uint16_t pos = 0;
- if (!l2cap_channel->receive_sdu_len){
- uint16_t sdu_len = little_endian_read_16(packet, COMPLETE_L2CAP_HEADER);
- if(sdu_len > l2cap_channel->local_mtu) break; // SDU would be larger than our buffer
- l2cap_channel->receive_sdu_len = sdu_len;
- l2cap_channel->receive_sdu_pos = 0;
- pos += 2u;
- size -= 2u;
- }
- uint16_t fragment_size = size-COMPLETE_L2CAP_HEADER;
- uint16_t remaining_space = l2cap_channel->local_mtu - l2cap_channel->receive_sdu_pos;
- if (fragment_size > remaining_space) break; // SDU would cause buffer overrun
- (void)memcpy(&l2cap_channel->receive_sdu_buffer[l2cap_channel->receive_sdu_pos],
- &packet[COMPLETE_L2CAP_HEADER + pos],
- fragment_size);
- l2cap_channel->receive_sdu_pos += size - COMPLETE_L2CAP_HEADER;
- // done?
- log_debug("le packet pos %u, len %u", l2cap_channel->receive_sdu_pos, l2cap_channel->receive_sdu_len);
- if (l2cap_channel->receive_sdu_pos >= l2cap_channel->receive_sdu_len){
- l2cap_dispatch_to_channel(l2cap_channel, L2CAP_DATA_PACKET, l2cap_channel->receive_sdu_buffer, l2cap_channel->receive_sdu_len);
- l2cap_channel->receive_sdu_len = 0;
- }
- } else {
- log_error("LE Data Channel packet received but no channel found for cid 0x%02x", channel_id);
- }
- #endif
- break;
- }
- #else
- UNUSED(handle); // ok: no code
- UNUSED(packet); // ok: no code
- UNUSED(size); // ok: no code
- #endif
- }
- static void l2cap_acl_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
- UNUSED(packet_type); // ok: registered with hci_register_acl_packet_handler
- UNUSED(channel); // ok: there is no channel
- // Assert full L2CAP header present
- if (size < COMPLETE_L2CAP_HEADER) return;
- // Dispatch to Classic or LE handler (SCO packets are not dispatched to L2CAP)
- hci_con_handle_t handle = READ_ACL_CONNECTION_HANDLE(packet);
- hci_connection_t *conn = hci_connection_for_handle(handle);
- if (!conn) return;
- if (conn->address_type == BD_ADDR_TYPE_ACL){
- l2cap_acl_classic_handler(handle, packet, size);
- } else {
- l2cap_acl_le_handler(handle, packet, size);
- }
- l2cap_run();
- }
- // Bluetooth 4.0 - allows to register handler for Attribute Protocol and Security Manager Protocol
- void l2cap_register_fixed_channel(btstack_packet_handler_t the_packet_handler, uint16_t channel_id) {
- l2cap_fixed_channel_t * channel = l2cap_fixed_channel_for_channel_id(channel_id);
- if (!channel) return;
- channel->packet_handler = the_packet_handler;
- }
- #ifdef ENABLE_CLASSIC
- // finalize closed channel - l2cap_handle_disconnect_request & DISCONNECTION_RESPONSE
- void l2cap_finialize_channel_close(l2cap_channel_t * channel){
- channel->state = L2CAP_STATE_CLOSED;
- l2cap_handle_channel_closed(channel);
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- }
- #endif
- #ifdef L2CAP_USES_CHANNELS
- static l2cap_service_t * l2cap_get_service_internal(btstack_linked_list_t * services, uint16_t psm){
- btstack_linked_list_iterator_t it;
- btstack_linked_list_iterator_init(&it, services);
- while (btstack_linked_list_iterator_has_next(&it)){
- l2cap_service_t * service = (l2cap_service_t *) btstack_linked_list_iterator_next(&it);
- if ( service->psm == psm){
- return service;
- };
- }
- return NULL;
- }
- #endif
- #ifdef ENABLE_CLASSIC
- static inline l2cap_service_t * l2cap_get_service(uint16_t psm){
- return l2cap_get_service_internal(&l2cap_services, psm);
- }
- uint8_t l2cap_register_service(btstack_packet_handler_t service_packet_handler, uint16_t psm, uint16_t mtu, gap_security_level_t security_level){
-
- log_info("L2CAP_REGISTER_SERVICE psm 0x%x mtu %u", psm, mtu);
-
- // check for alread registered psm
- l2cap_service_t *service = l2cap_get_service(psm);
- if (service) {
- log_error("l2cap_register_service: PSM %u already registered", psm);
- return L2CAP_SERVICE_ALREADY_REGISTERED;
- }
-
- // alloc structure
- service = btstack_memory_l2cap_service_get();
- if (!service) {
- log_error("l2cap_register_service: no memory for l2cap_service_t");
- return BTSTACK_MEMORY_ALLOC_FAILED;
- }
-
- // fill in
- service->psm = psm;
- service->mtu = mtu;
- service->packet_handler = service_packet_handler;
- service->required_security_level = security_level;
- // add to services list
- btstack_linked_list_add(&l2cap_services, (btstack_linked_item_t *) service);
-
- // enable page scan
- gap_connectable_control(1);
- return ERROR_CODE_SUCCESS;
- }
- uint8_t l2cap_unregister_service(uint16_t psm){
-
- log_info("L2CAP_UNREGISTER_SERVICE psm 0x%x", psm);
- l2cap_service_t *service = l2cap_get_service(psm);
- if (!service) return L2CAP_SERVICE_DOES_NOT_EXIST;
- btstack_linked_list_remove(&l2cap_services, (btstack_linked_item_t *) service);
- btstack_memory_l2cap_service_free(service);
-
- // disable page scan when no services registered
- if (btstack_linked_list_empty(&l2cap_services)) {
- gap_connectable_control(0);
- }
- return ERROR_CODE_SUCCESS;
- }
- #endif
- #ifdef ENABLE_LE_DATA_CHANNELS
- static void l2cap_le_notify_channel_can_send(l2cap_channel_t *channel){
- if (!channel->waiting_for_can_send_now) return;
- if (channel->send_sdu_buffer) return;
- channel->waiting_for_can_send_now = 0;
- log_debug("L2CAP_EVENT_CHANNEL_LE_CAN_SEND_NOW local_cid 0x%x", channel->local_cid);
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_LE_CAN_SEND_NOW);
- }
- // 1BH2222
- static void l2cap_emit_le_incoming_connection(l2cap_channel_t *channel) {
- log_info("L2CAP_EVENT_LE_INCOMING_CONNECTION addr_type %u, addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x, remote_mtu %u",
- channel->address_type, bd_addr_to_str(channel->address), channel->con_handle, channel->psm, channel->local_cid, channel->remote_cid, channel->remote_mtu);
- uint8_t event[19];
- event[0] = L2CAP_EVENT_LE_INCOMING_CONNECTION;
- event[1] = sizeof(event) - 2u;
- event[2] = channel->address_type;
- reverse_bd_addr(channel->address, &event[3]);
- little_endian_store_16(event, 9, channel->con_handle);
- little_endian_store_16(event, 11, channel->psm);
- little_endian_store_16(event, 13, channel->local_cid);
- little_endian_store_16(event, 15, channel->remote_cid);
- little_endian_store_16(event, 17, channel->remote_mtu);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
- }
- // 11BH22222
- static void l2cap_emit_le_channel_opened(l2cap_channel_t *channel, uint8_t status) {
- log_info("L2CAP_EVENT_LE_CHANNEL_OPENED status 0x%x addr_type %u addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x local_mtu %u, remote_mtu %u",
- status, channel->address_type, bd_addr_to_str(channel->address), channel->con_handle, channel->psm,
- channel->local_cid, channel->remote_cid, channel->local_mtu, channel->remote_mtu);
- uint8_t event[23];
- event[0] = L2CAP_EVENT_LE_CHANNEL_OPENED;
- event[1] = sizeof(event) - 2u;
- event[2] = status;
- event[3] = channel->address_type;
- reverse_bd_addr(channel->address, &event[4]);
- little_endian_store_16(event, 10, channel->con_handle);
- event[12] = (channel->state_var & L2CAP_CHANNEL_STATE_VAR_INCOMING) ? 1 : 0;
- little_endian_store_16(event, 13, channel->psm);
- little_endian_store_16(event, 15, channel->local_cid);
- little_endian_store_16(event, 17, channel->remote_cid);
- little_endian_store_16(event, 19, channel->local_mtu);
- little_endian_store_16(event, 21, channel->remote_mtu);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
- }
- // 2
- static void l2cap_emit_le_channel_closed(l2cap_channel_t * channel){
- log_info("L2CAP_EVENT_LE_CHANNEL_CLOSED local_cid 0x%x", channel->local_cid);
- uint8_t event[4];
- event[0] = L2CAP_EVENT_LE_CHANNEL_CLOSED;
- event[1] = sizeof(event) - 2u;
- little_endian_store_16(event, 2, channel->local_cid);
- hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
- l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
- }
- static void l2cap_le_send_pdu(l2cap_channel_t *channel){
- btstack_assert(channel != NULL);
- btstack_assert(channel->send_sdu_buffer != NULL);
- btstack_assert(channel->credits_outgoing > 0);
- // send part of SDU
- hci_reserve_packet_buffer();
- uint8_t * acl_buffer = hci_get_outgoing_packet_buffer();
- uint8_t * l2cap_payload = acl_buffer + 8;
- uint16_t pos = 0;
- if (!channel->send_sdu_pos){
- // store SDU len
- channel->send_sdu_pos += 2u;
- little_endian_store_16(l2cap_payload, pos, channel->send_sdu_len);
- pos += 2u;
- }
- uint16_t payload_size = btstack_min(channel->send_sdu_len + 2u - channel->send_sdu_pos, channel->remote_mps - pos);
- log_info("len %u, pos %u => payload %u, credits %u", channel->send_sdu_len, channel->send_sdu_pos, payload_size, channel->credits_outgoing);
- (void)memcpy(&l2cap_payload[pos],
- &channel->send_sdu_buffer[channel->send_sdu_pos - 2u],
- payload_size); // -2 for virtual SDU len
- pos += payload_size;
- channel->send_sdu_pos += payload_size;
- l2cap_setup_header(acl_buffer, channel->con_handle, 0, channel->remote_cid, pos);
- channel->credits_outgoing--;
- hci_send_acl_packet_buffer(8u + pos);
- if (channel->send_sdu_pos >= (channel->send_sdu_len + 2u)){
- channel->send_sdu_buffer = NULL;
- // send done event
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_LE_PACKET_SENT);
- // inform about can send now
- l2cap_le_notify_channel_can_send(channel);
- }
- }
- // finalize closed channel - l2cap_handle_disconnect_request & DISCONNECTION_RESPONSE
- void l2cap_le_finialize_channel_close(l2cap_channel_t * channel){
- channel->state = L2CAP_STATE_CLOSED;
- l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_CHANNEL_CLOSED);
- // discard channel
- btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
- l2cap_free_channel_entry(channel);
- }
- static inline l2cap_service_t * l2cap_le_get_service(uint16_t le_psm){
- return l2cap_get_service_internal(&l2cap_le_services, le_psm);
- }
- uint8_t l2cap_le_register_service(btstack_packet_handler_t packet_handler, uint16_t psm, gap_security_level_t security_level){
-
- log_info("L2CAP_LE_REGISTER_SERVICE psm 0x%x", psm);
-
- // check for alread registered psm
- l2cap_service_t *service = l2cap_le_get_service(psm);
- if (service) {
- return L2CAP_SERVICE_ALREADY_REGISTERED;
- }
-
- // alloc structure
- service = btstack_memory_l2cap_service_get();
- if (!service) {
- log_error("l2cap_register_service_internal: no memory for l2cap_service_t");
- return BTSTACK_MEMORY_ALLOC_FAILED;
- }
-
- // fill in
- service->psm = psm;
- service->mtu = 0;
- service->packet_handler = packet_handler;
- service->required_security_level = security_level;
- // add to services list
- btstack_linked_list_add(&l2cap_le_services, (btstack_linked_item_t *) service);
-
- // done
- return ERROR_CODE_SUCCESS;
- }
- uint8_t l2cap_le_unregister_service(uint16_t psm) {
- log_info("L2CAP_LE_UNREGISTER_SERVICE psm 0x%x", psm);
- l2cap_service_t *service = l2cap_le_get_service(psm);
- if (!service) return L2CAP_SERVICE_DOES_NOT_EXIST;
- btstack_linked_list_remove(&l2cap_le_services, (btstack_linked_item_t *) service);
- btstack_memory_l2cap_service_free(service);
- return ERROR_CODE_SUCCESS;
- }
- uint8_t l2cap_le_accept_connection(uint16_t local_cid, uint8_t * receive_sdu_buffer, uint16_t mtu, uint16_t initial_credits){
- // get channel
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- // validate state
- if (channel->state != L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT){
- return ERROR_CODE_COMMAND_DISALLOWED;
- }
- // set state accept connection
- channel->state = L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_ACCEPT;
- channel->receive_sdu_buffer = receive_sdu_buffer;
- channel->local_mtu = mtu;
- channel->new_credits_incoming = initial_credits;
- channel->automatic_credits = initial_credits == L2CAP_LE_AUTOMATIC_CREDITS;
- // test
- // channel->new_credits_incoming = 1;
- // go
- l2cap_run();
- return ERROR_CODE_SUCCESS;
- }
- /**
- * @brief Deny incoming LE Data Channel connection due to resource constraints
- * @param local_cid L2CAP LE Data Channel Identifier
- */
- uint8_t l2cap_le_decline_connection(uint16_t local_cid){
- // get channel
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- // validate state
- if (channel->state != L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT){
- return ERROR_CODE_COMMAND_DISALLOWED;
- }
- // set state decline connection
- channel->state = L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_DECLINE;
- channel->reason = 0x04; // no resources available
- l2cap_run();
- return ERROR_CODE_SUCCESS;
- }
- uint8_t l2cap_le_create_channel(btstack_packet_handler_t packet_handler, hci_con_handle_t con_handle,
- uint16_t psm, uint8_t * receive_sdu_buffer, uint16_t mtu, uint16_t initial_credits, gap_security_level_t security_level,
- uint16_t * out_local_cid) {
- log_info("L2CAP_LE_CREATE_CHANNEL handle 0x%04x psm 0x%x mtu %u", con_handle, psm, mtu);
- hci_connection_t * connection = hci_connection_for_handle(con_handle);
- if (!connection) {
- log_error("no hci_connection for handle 0x%04x", con_handle);
- return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
- }
- l2cap_channel_t * channel = l2cap_create_channel_entry(packet_handler, L2CAP_CHANNEL_TYPE_LE_DATA_CHANNEL, connection->address, connection->address_type, psm, mtu, security_level);
- if (!channel) {
- return BTSTACK_MEMORY_ALLOC_FAILED;
- }
- log_info("l2cap_le_create_channel %p", channel);
- // store local_cid
- if (out_local_cid){
- *out_local_cid = channel->local_cid;
- }
- // provide buffer
- channel->con_handle = con_handle;
- channel->receive_sdu_buffer = receive_sdu_buffer;
- channel->state = L2CAP_STATE_WILL_SEND_LE_CONNECTION_REQUEST;
- channel->new_credits_incoming = initial_credits;
- channel->automatic_credits = initial_credits == L2CAP_LE_AUTOMATIC_CREDITS;
- // add to connections list
- btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel);
- // go
- l2cap_run();
- return ERROR_CODE_SUCCESS;
- }
- /**
- * @brief Provide credtis for LE Data Channel
- * @param local_cid L2CAP LE Data Channel Identifier
- * @param credits Number additional credits for peer
- */
- uint8_t l2cap_le_provide_credits(uint16_t local_cid, uint16_t credits){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_le_provide_credits no channel for cid 0x%02x", local_cid);
- return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- }
- // check state
- if (channel->state != L2CAP_STATE_OPEN){
- log_error("l2cap_le_provide_credits but channel 0x%02x not open yet", local_cid);
- }
- // assert incoming credits + credits <= 0xffff
- uint32_t total_credits = channel->credits_incoming;
- total_credits += channel->new_credits_incoming;
- total_credits += credits;
- if (total_credits > 0xffffu){
- log_error("l2cap_le_provide_credits overrun: current %u, scheduled %u, additional %u", channel->credits_incoming,
- channel->new_credits_incoming, credits);
- }
- // set credits_granted
- channel->new_credits_incoming += credits;
- // go
- l2cap_run();
- return ERROR_CODE_SUCCESS;
- }
- /**
- * @brief Check if outgoing buffer is available and that there's space on the Bluetooth module
- * @param local_cid L2CAP LE Data Channel Identifier
- */
- int l2cap_le_can_send_now(uint16_t local_cid){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_le_provide_credits no channel for cid 0x%02x", local_cid);
- return 0;
- }
- // check state
- if (channel->state != L2CAP_STATE_OPEN) return 0;
- // check queue
- if (channel->send_sdu_buffer) return 0;
- // fine, go ahead
- return 1;
- }
- /**
- * @brief Request emission of L2CAP_EVENT_CAN_SEND_NOW as soon as possible
- * @note L2CAP_EVENT_CAN_SEND_NOW might be emitted during call to this function
- * so packet handler should be ready to handle it
- * @param local_cid L2CAP LE Data Channel Identifier
- */
- uint8_t l2cap_le_request_can_send_now_event(uint16_t local_cid){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_le_request_can_send_now_event no channel for cid 0x%02x", local_cid);
- return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- }
- channel->waiting_for_can_send_now = 1;
- l2cap_le_notify_channel_can_send(channel);
- return ERROR_CODE_SUCCESS;
- }
- /**
- * @brief Send data via LE Data Channel
- * @note Since data larger then the maximum PDU needs to be segmented into multiple PDUs, data needs to stay valid until ... event
- * @param local_cid L2CAP LE Data Channel Identifier
- * @param data data to send
- * @param size data size
- */
- uint8_t l2cap_le_send_data(uint16_t local_cid, uint8_t * data, uint16_t len){
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_send no channel for cid 0x%02x", local_cid);
- return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- }
- if (len > channel->remote_mtu){
- log_error("l2cap_send cid 0x%02x, data length exceeds remote MTU.", local_cid);
- return L2CAP_DATA_LEN_EXCEEDS_REMOTE_MTU;
- }
- if (channel->send_sdu_buffer){
- log_info("l2cap_send cid 0x%02x, cannot send", local_cid);
- return BTSTACK_ACL_BUFFERS_FULL;
- }
- channel->send_sdu_buffer = data;
- channel->send_sdu_len = len;
- channel->send_sdu_pos = 0;
- l2cap_notify_channel_can_send();
- return ERROR_CODE_SUCCESS;
- }
- /**
- * @brief Disconnect from LE Data Channel
- * @param local_cid L2CAP LE Data Channel Identifier
- */
- uint8_t l2cap_le_disconnect(uint16_t local_cid)
- {
- l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
- if (!channel) {
- log_error("l2cap_send no channel for cid 0x%02x", local_cid);
- return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
- }
- channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
- l2cap_run();
- return ERROR_CODE_SUCCESS;
- }
- #endif
|