1 %{ 2 /* 3 * lexer.l 4 */ 5 6 /*- 7 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 8 * 9 * Copyright (c) 2006 Maksim Yevmenkin <m_evmenkin@yahoo.com> 10 * All rights reserved. 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice, this list of conditions and the following disclaimer. 17 * 2. Redistributions in binary form must reproduce the above copyright 18 * notice, this list of conditions and the following disclaimer in the 19 * documentation and/or other materials provided with the distribution. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 * 33 * $Id: lexer.l,v 1.3 2006/09/07 21:06:53 max Exp $ 34 * $FreeBSD$ 35 */ 36 #define L2CAP_SOCKET_CHECKED 37 #include <bluetooth.h> 38 #include <stdlib.h> 39 #include "parser.h" 40 41 int yylex (void); 42 43 #define YY_DECL int yylex(void) 44 %} 45 46 %option yylineno noyywrap nounput noinput 47 48 delim [ \t\n] 49 ws {delim}+ 50 empty {delim}* 51 comment \#.* 52 53 hexdigit [0-9a-fA-F] 54 hexbyte {hexdigit}{hexdigit}? 55 hexword {hexdigit}{hexdigit}?{hexdigit}?{hexdigit}? 56 57 device_word device 58 bdaddr_word bdaddr 59 vendor_id_word vendor_id 60 product_id_word product_id 61 version_word version 62 control_psm_word control_psm 63 interrupt_psm_word interrupt_psm 64 reconnect_initiate_word reconnect_initiate 65 battery_power_word battery_power 66 normally_connectable_word normally_connectable 67 hid_descriptor_word hid_descriptor 68 true_word true 69 false_word false 70 71 bdaddrstring {hexbyte}:{hexbyte}:{hexbyte}:{hexbyte}:{hexbyte}:{hexbyte} 72 hexbytestring 0x{hexbyte} 73 hexwordstring 0x{hexword} 74 75 %% 76 77 \; return (';'); 78 \: return (':'); 79 \{ return ('{'); 80 \} return ('}'); 81 82 {ws} ; 83 {empty} ; 84 {comment} ; 85 86 {device_word} return (T_DEVICE); 87 {bdaddr_word} return (T_BDADDR); 88 {vendor_id_word} return (T_VENDOR_ID); 89 {product_id_word} return (T_PRODUCT_ID); 90 {version_word} return (T_VERSION); 91 {control_psm_word} return (T_CONTROL_PSM); 92 {interrupt_psm_word} return (T_INTERRUPT_PSM); 93 {reconnect_initiate_word} return (T_RECONNECT_INITIATE); 94 {battery_power_word} return (T_BATTERY_POWER); 95 {normally_connectable_word} return (T_NORMALLY_CONNECTABLE); 96 {hid_descriptor_word} return (T_HID_DESCRIPTOR); 97 {true_word} return (T_TRUE); 98 {false_word} return (T_FALSE); 99 100 {bdaddrstring} { 101 return (bt_aton(yytext, &yylval.bdaddr)? 102 T_BDADDRSTRING : T_ERROR); 103 } 104 105 {hexbytestring} { 106 char *ep; 107 108 yylval.num = strtoul(yytext, &ep, 16); 109 110 return (*ep == '\0'? T_HEXBYTE : T_ERROR); 111 } 112 113 {hexwordstring} { 114 char *ep; 115 116 yylval.num = strtoul(yytext, &ep, 16); 117 118 return (*ep == '\0'? T_HEXWORD : T_ERROR); 119 } 120 121 . return (T_ERROR); 122 123 %% 124 125