2004-04-23 11:58:43 +01:00
|
|
|
%option yylineno
|
|
|
|
|
|
|
|
%{
|
|
|
|
/* scanner for security protocols language */
|
|
|
|
|
|
|
|
#include <strings.h>
|
|
|
|
#include "pheading.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "tac.h"
|
|
|
|
|
|
|
|
/* tokens for language */
|
2004-05-21 20:31:42 +01:00
|
|
|
#include "parser.h"
|
2004-04-23 11:58:43 +01:00
|
|
|
|
|
|
|
void mkname(char *name);
|
|
|
|
void mkval(void);
|
|
|
|
void mktext(void);
|
|
|
|
|
|
|
|
int yyerror(char *s);
|
|
|
|
|
|
|
|
Symbol mkstring(char *name);
|
|
|
|
|
|
|
|
struct stringlist {
|
|
|
|
char* string;
|
|
|
|
struct stringlist* next;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct stringlist* Stringlist;
|
|
|
|
|
|
|
|
static Stringlist allocatedStrings = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
int mylineno = 0;
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
comment1 "//".*
|
|
|
|
comment2 "#".*
|
2005-11-28 08:27:05 +00:00
|
|
|
delimiter [ \t\r\n]
|
2004-04-23 11:58:43 +01:00
|
|
|
whitespace {delimiter}+
|
|
|
|
uc_letter [A-Z]
|
|
|
|
lc_letter [a-z]
|
|
|
|
letter {lc_letter}|{uc_letter}
|
|
|
|
digit [0-9]
|
|
|
|
ascii_char [^\"\n]
|
|
|
|
escaped_char \\n|\\\"
|
|
|
|
integer {digit}+
|
|
|
|
text \"({ascii_char}|{escaped_char})*\"
|
2005-08-15 12:27:46 +01:00
|
|
|
id @?({letter}|{digit}|[\^\-])+
|
2004-04-23 11:58:43 +01:00
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
"/*" {
|
|
|
|
register int c;
|
|
|
|
|
|
|
|
for ( ; ; )
|
|
|
|
{
|
|
|
|
while ( (c = input()) != '*' && c != '\n' && c != EOF )
|
|
|
|
; /* eat up text of comment */
|
|
|
|
|
|
|
|
if ( c == '*' )
|
|
|
|
{
|
|
|
|
while ( (c = input()) == '*' )
|
|
|
|
;
|
|
|
|
if ( c == '/' )
|
|
|
|
break; /* found the end */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '\n')
|
|
|
|
mylineno++;
|
|
|
|
|
|
|
|
if ( c == EOF )
|
|
|
|
{
|
|
|
|
yyerror( "EOF in comment" );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
\n { mylineno++; }
|
|
|
|
{whitespace} { }
|
|
|
|
{comment1} { }
|
|
|
|
{comment2} { }
|
|
|
|
|
|
|
|
protocol { return PROTOCOL; }
|
|
|
|
role { return ROLE; }
|
|
|
|
read { return READT; }
|
|
|
|
send { return SENDT; }
|
|
|
|
var { return VAR; }
|
|
|
|
const { return CONST; }
|
|
|
|
claim { return CLAIMT; }
|
|
|
|
run { return RUN; }
|
|
|
|
secret { return SECRET; }
|
|
|
|
inversekeys { return INVERSEKEYS; }
|
|
|
|
untrusted { return UNTRUSTED; }
|
|
|
|
compromised { return COMPROMISED; }
|
|
|
|
usertype { return USERTYPE; }
|
2006-01-02 16:05:53 +00:00
|
|
|
singular { return SINGULAR; }
|
2006-01-09 09:38:17 +00:00
|
|
|
function { return FUNCTION; }
|
|
|
|
hashfunction { return HASHFUNCTION; }
|
|
|
|
knows { return KNOWS; }
|
|
|
|
trusted { return TRUSTED; }
|
2004-04-23 11:58:43 +01:00
|
|
|
{id} {
|
|
|
|
yylval.symb = mkstring(yytext);
|
|
|
|
return ID;
|
|
|
|
}
|
|
|
|
. { return yytext[0]; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
Symbol mkstring(char *name)
|
|
|
|
{
|
|
|
|
Symbol t;
|
|
|
|
char* s;
|
|
|
|
Stringlist sl;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (( t = lookup(name)) != NULL)
|
|
|
|
{
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
// make new name
|
|
|
|
len = strlen(name);
|
2006-03-08 13:58:46 +00:00
|
|
|
s = (char *)malloc(len+1);
|
|
|
|
sl = (Stringlist) malloc(sizeof(struct stringlist));
|
2004-04-23 11:58:43 +01:00
|
|
|
strncpy(s,name,len);
|
|
|
|
sl->next = allocatedStrings;
|
|
|
|
allocatedStrings = sl;
|
|
|
|
sl->string = s;
|
|
|
|
s[len] = EOS;
|
|
|
|
|
|
|
|
t = get_symb();
|
|
|
|
t->lineno = yylineno;
|
|
|
|
t->type = T_UNDEF;
|
|
|
|
t->text = s;
|
|
|
|
|
|
|
|
insert(t);
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
void scanner_cleanup(void)
|
|
|
|
{
|
|
|
|
yy_delete_buffer (YY_CURRENT_BUFFER);
|
|
|
|
}
|
|
|
|
|
|
|
|
void strings_cleanup(void)
|
|
|
|
{
|
|
|
|
Stringlist sl;
|
|
|
|
while (allocatedStrings != NULL)
|
|
|
|
{
|
|
|
|
sl = allocatedStrings;
|
|
|
|
allocatedStrings = sl->next;
|
2006-03-08 13:58:46 +00:00
|
|
|
free(sl->string);
|
|
|
|
free(sl);
|
2004-04-23 11:58:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-17 20:35:54 +01:00
|
|
|
int yywrap (void)
|
|
|
|
{
|
2004-07-17 20:52:07 +01:00
|
|
|
/* signal true to let lex know that nothing else is coming */
|
|
|
|
return 1;
|
2004-07-17 20:35:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-04-23 11:58:43 +01:00
|
|
|
/*
|
|
|
|
void mkval(void);
|
|
|
|
void mktext(void);
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// vim:ft=lex:
|