]>
The Tcpdump Group git mirrors - tcpdump/blob - print-smb.c
2 * Copyright (C) Andrew Tridgell 1995-1999
4 * This software may be distributed either under the terms of the
5 * BSD-style license that accompanies tcpdump or the GNU GPL version 2
9 #define NETDISSECT_REWORKED
14 #include <tcpdump-stdinc.h>
18 #include "interface.h"
22 static const char tstr
[] = "[|SMB]" ;
24 static int request
= 0 ;
25 static int unicodestr
= 0 ;
27 const u_char
* startbuf
= NULL
;
34 void (* fn
)( netdissect_options
*, const u_char
*, const u_char
*, const u_char
*, const u_char
*);
37 struct smbdescriptint
{
42 void (* fn
)( netdissect_options
*, const u_char
*, const u_char
*, int , int );
50 struct smbdescript descript
;
58 struct smbdescriptint descript
;
61 #define DEFDESCRIPT { NULL, NULL, NULL, NULL, NULL }
63 #define FLG_CHAIN (1 << 0)
65 static const struct smbfns
*
66 smbfind ( int id
, const struct smbfns
* list
)
70 for ( sindex
= 0 ; list
[ sindex
]. name
; sindex
++)
71 if ( list
[ sindex
]. id
== id
)
72 return (& list
[ sindex
]);
77 static const struct smbfnsint
*
78 smbfindint ( int id
, const struct smbfnsint
* list
)
82 for ( sindex
= 0 ; list
[ sindex
]. name
; sindex
++)
83 if ( list
[ sindex
]. id
== id
)
84 return (& list
[ sindex
]);
90 trans2_findfirst ( netdissect_options
* ndo
,
91 const u_char
* param
, const u_char
* data
, int pcnt
, int dcnt
)
96 fmt
= "Attribute=[A] \n SearchCount=[d] \n Flags=[w] \n Level=[dP4] \n File=[S] \n " ;
98 fmt
= "Handle=[w] \n Count=[d] \n EOS=[w] \n Eoffset=[d] \n LastNameOfs=[w] \n " ;
100 smb_fdata ( ndo
, param
, fmt
, param
+ pcnt
, unicodestr
);
102 ND_PRINT (( ndo
, "data: \n " ));
103 print_data ( ndo
, data
, dcnt
);
108 trans2_qfsinfo ( netdissect_options
* ndo
,
109 const u_char
* param
, const u_char
* data
, int pcnt
, int dcnt
)
111 static int level
= 0 ;
115 ND_TCHECK2 (* param
, 2 );
116 level
= EXTRACT_LE_16BITS ( param
);
117 fmt
= "InfoLevel=[d] \n " ;
118 smb_fdata ( ndo
, param
, fmt
, param
+ pcnt
, unicodestr
);
122 fmt
= "idFileSystem=[W] \n SectorUnit=[D] \n Unit=[D] \n Avail=[D] \n SectorSize=[d] \n " ;
125 fmt
= "CreationTime=[T2]VolNameLength=[lb] \n VolumeLabel=[c] \n " ;
128 fmt
= "Capabilities=[W] \n MaxFileLen=[D] \n VolNameLen=[lD] \n Volume=[C] \n " ;
131 fmt
= "UnknownLevel \n " ;
134 smb_fdata ( ndo
, data
, fmt
, data
+ dcnt
, unicodestr
);
137 ND_PRINT (( ndo
, "data: \n " ));
138 print_data ( ndo
, data
, dcnt
);
142 ND_PRINT (( ndo
, "%s" , tstr
));
145 static const struct smbfnsint trans2_fns
[] = {
146 { 0 , "TRANSACT2_OPEN" , 0 ,
147 { "Flags2=[w] \n Mode=[w] \n SearchAttrib=[A] \n Attrib=[A] \n Time=[T2] \n OFun=[w] \n Size=[D] \n Res=([w, w, w, w, w]) \n Path=[S]" ,
149 "Handle=[d] \n Attrib=[A] \n Time=[T2] \n Size=[D] \n Access=[w] \n Type=[w] \n State=[w] \n Action=[w] \n Inode=[W] \n OffErr=[d] \n |EALength=[d] \n " ,
151 { 1 , "TRANSACT2_FINDFIRST" , 0 ,
152 { NULL
, NULL
, NULL
, NULL
, trans2_findfirst
}},
153 { 2 , "TRANSACT2_FINDNEXT" , 0 , DEFDESCRIPT
},
154 { 3 , "TRANSACT2_QFSINFO" , 0 ,
155 { NULL
, NULL
, NULL
, NULL
, trans2_qfsinfo
}},
156 { 4 , "TRANSACT2_SETFSINFO" , 0 , DEFDESCRIPT
},
157 { 5 , "TRANSACT2_QPATHINFO" , 0 , DEFDESCRIPT
},
158 { 6 , "TRANSACT2_SETPATHINFO" , 0 , DEFDESCRIPT
},
159 { 7 , "TRANSACT2_QFILEINFO" , 0 , DEFDESCRIPT
},
160 { 8 , "TRANSACT2_SETFILEINFO" , 0 , DEFDESCRIPT
},
161 { 9 , "TRANSACT2_FSCTL" , 0 , DEFDESCRIPT
},
162 { 10 , "TRANSACT2_IOCTL" , 0 , DEFDESCRIPT
},
163 { 11 , "TRANSACT2_FINDNOTIFYFIRST" , 0 , DEFDESCRIPT
},
164 { 12 , "TRANSACT2_FINDNOTIFYNEXT" , 0 , DEFDESCRIPT
},
165 { 13 , "TRANSACT2_MKDIR" , 0 , DEFDESCRIPT
},
166 { - 1 , NULL
, 0 , DEFDESCRIPT
}
171 print_trans2 ( netdissect_options
* ndo
,
172 const u_char
* words
, const u_char
* dat
, const u_char
* buf
, const u_char
* maxbuf
)
175 static const struct smbfnsint
* fn
= & trans2_fns
[ 0 ];
176 const u_char
* data
, * param
;
177 const u_char
* w
= words
+ 1 ;
178 const char * f1
= NULL
, * f2
= NULL
;
183 ND_TCHECK2 ( w
[ 14 * 2 ], 2 );
184 pcnt
= EXTRACT_LE_16BITS ( w
+ 9 * 2 );
185 param
= buf
+ EXTRACT_LE_16BITS ( w
+ 10 * 2 );
186 dcnt
= EXTRACT_LE_16BITS ( w
+ 11 * 2 );
187 data
= buf
+ EXTRACT_LE_16BITS ( w
+ 12 * 2 );
188 fn
= smbfindint ( EXTRACT_LE_16BITS ( w
+ 14 * 2 ), trans2_fns
);
191 ND_PRINT (( ndo
, "%s \n " , fn
-> name
));
192 ND_PRINT (( ndo
, "Trans2Interim \n " ));
195 ND_TCHECK2 ( w
[ 7 * 2 ], 2 );
196 pcnt
= EXTRACT_LE_16BITS ( w
+ 3 * 2 );
197 param
= buf
+ EXTRACT_LE_16BITS ( w
+ 4 * 2 );
198 dcnt
= EXTRACT_LE_16BITS ( w
+ 6 * 2 );
199 data
= buf
+ EXTRACT_LE_16BITS ( w
+ 7 * 2 );
202 ND_PRINT (( ndo
, "%s param_length=%d data_length=%d \n " , fn
-> name
, pcnt
, dcnt
));
206 smb_fdata ( ndo
, words
+ 1 ,
207 "Trans2Secondary \n TotParam=[d] \n TotData=[d] \n ParamCnt=[d] \n ParamOff=[d] \n ParamDisp=[d] \n DataCnt=[d] \n DataOff=[d] \n DataDisp=[d] \n Handle=[d] \n " ,
211 smb_fdata ( ndo
, words
+ 1 ,
212 "TotParam=[d] \n TotData=[d] \n MaxParam=[d] \n MaxData=[d] \n MaxSetup=[b][P1] \n Flags=[w] \n TimeOut=[D] \n Res1=[w] \n ParamCnt=[d] \n ParamOff=[d] \n DataCnt=[d] \n DataOff=[d] \n SetupCnt=[b][P1] \n " ,
213 words
+ 1 + 14 * 2 , unicodestr
);
215 f1
= fn
-> descript
. req_f1
;
216 f2
= fn
-> descript
. req_f2
;
218 smb_fdata ( ndo
, words
+ 1 ,
219 "TotParam=[d] \n TotData=[d] \n Res1=[w] \n ParamCnt=[d] \n ParamOff=[d] \n ParamDisp[d] \n DataCnt=[d] \n DataOff=[d] \n DataDisp=[d] \n SetupCnt=[b][P1] \n " ,
220 words
+ 1 + 10 * 2 , unicodestr
);
221 f1
= fn
-> descript
. rep_f1
;
222 f2
= fn
-> descript
. rep_f2
;
226 bcc
= EXTRACT_LE_16BITS ( dat
);
227 ND_PRINT (( ndo
, "smb_bcc=%u \n " , bcc
));
229 (* fn
-> descript
. fn
)( ndo
, param
, data
, pcnt
, dcnt
);
231 smb_fdata ( ndo
, param
, f1
? f1
: "Parameters= \n " , param
+ pcnt
, unicodestr
);
232 smb_fdata ( ndo
, data
, f2
? f2
: "Data= \n " , data
+ dcnt
, unicodestr
);
236 ND_PRINT (( ndo
, "%s" , tstr
));
240 print_browse ( netdissect_options
* ndo
,
241 const u_char
* param
, int paramlen
, const u_char
* data
, int datalen
)
243 const u_char
* maxbuf
= data
+ datalen
;
249 smb_fdata ( ndo
, param
, "BROWSE PACKET \n |Param " , param
+ paramlen
, unicodestr
);
253 data
= smb_fdata ( ndo
, data
,
254 "BROWSE PACKET: \n Type=[B] (LocalMasterAnnouncement) \n UpdateCount=[w] \n Res1=[B] \n AnnounceInterval=[d] \n Name=[n2] \n MajorVersion=[B] \n MinorVersion=[B] \n ServerType=[W] \n ElectionVersion=[w] \n BrowserConstant=[w] \n " ,
259 data
= smb_fdata ( ndo
, data
,
260 "BROWSE PACKET: \n Type=[B] (HostAnnouncement) \n UpdateCount=[w] \n Res1=[B] \n AnnounceInterval=[d] \n Name=[n2] \n MajorVersion=[B] \n MinorVersion=[B] \n ServerType=[W] \n ElectionVersion=[w] \n BrowserConstant=[w] \n " ,
265 data
= smb_fdata ( ndo
, data
,
266 "BROWSE PACKET: \n Type=[B] (AnnouncementRequest) \n Flags=[B] \n ReplySystemName=[S] \n " ,
271 data
= smb_fdata ( ndo
, data
,
272 "BROWSE PACKET: \n Type=[B] (WorkgroupAnnouncement) \n UpdateCount=[w] \n Res1=[B] \n AnnounceInterval=[d] \n Name=[n2] \n MajorVersion=[B] \n MinorVersion=[B] \n ServerType=[W] \n CommentPointer=[W] \n ServerName=[S] \n " ,
277 data
= smb_fdata ( ndo
, data
,
278 "BROWSE PACKET: \n Type=[B] (ElectionFrame) \n ElectionVersion=[B] \n OSSummary=[W] \n Uptime=[(W, W)] \n ServerName=[S] \n " ,
283 data
= smb_fdata ( ndo
, data
,
284 "BROWSE PACKET: \n Type=[B] (BecomeBackupBrowser) \n Name=[S] \n " ,
289 data
= smb_fdata ( ndo
, data
,
290 "BROWSE PACKET: \n Type=[B] (GetBackupList) \n ListCount?=[B] \n Token=[W] \n " ,
295 data
= smb_fdata ( ndo
, data
,
296 "BROWSE PACKET: \n Type=[B] (BackupListResponse) \n ServerCount?=[B] \n Token=[W] \n *Name=[S] \n " ,
301 data
= smb_fdata ( ndo
, data
,
302 "BROWSE PACKET: \n Type=[B] (MasterAnnouncement) \n MasterName=[S] \n " ,
307 data
= smb_fdata ( ndo
, data
,
308 "BROWSE PACKET: \n Type=[B] (ResetBrowser) \n Options=[B] \n " , maxbuf
, unicodestr
);
312 data
= smb_fdata ( ndo
, data
, "Unknown Browser Frame " , maxbuf
, unicodestr
);
317 ND_PRINT (( ndo
, "%s" , tstr
));
322 print_ipc ( netdissect_options
* ndo
,
323 const u_char
* param
, int paramlen
, const u_char
* data
, int datalen
)
326 smb_fdata ( ndo
, param
, "Command=[w] \n Str1=[S] \n Str2=[S] \n " , param
+ paramlen
,
329 smb_fdata ( ndo
, data
, "IPC " , data
+ datalen
, unicodestr
);
334 print_trans ( netdissect_options
* ndo
,
335 const u_char
* words
, const u_char
* data1
, const u_char
* buf
, const u_char
* maxbuf
)
338 const char * f1
, * f2
, * f3
, * f4
;
339 const u_char
* data
, * param
;
340 const u_char
* w
= words
+ 1 ;
341 int datalen
, paramlen
;
344 ND_TCHECK2 ( w
[ 12 * 2 ], 2 );
345 paramlen
= EXTRACT_LE_16BITS ( w
+ 9 * 2 );
346 param
= buf
+ EXTRACT_LE_16BITS ( w
+ 10 * 2 );
347 datalen
= EXTRACT_LE_16BITS ( w
+ 11 * 2 );
348 data
= buf
+ EXTRACT_LE_16BITS ( w
+ 12 * 2 );
349 f1
= "TotParamCnt=[d] \n TotDataCnt=[d] \n MaxParmCnt=[d] \n MaxDataCnt=[d] \n MaxSCnt=[d] \n TransFlags=[w] \n Res1=[w] \n Res2=[w] \n Res3=[w] \n ParamCnt=[d] \n ParamOff=[d] \n DataCnt=[d] \n DataOff=[d] \n SUCnt=[d] \n " ;
354 ND_TCHECK2 ( w
[ 7 * 2 ], 2 );
355 paramlen
= EXTRACT_LE_16BITS ( w
+ 3 * 2 );
356 param
= buf
+ EXTRACT_LE_16BITS ( w
+ 4 * 2 );
357 datalen
= EXTRACT_LE_16BITS ( w
+ 6 * 2 );
358 data
= buf
+ EXTRACT_LE_16BITS ( w
+ 7 * 2 );
359 f1
= "TotParamCnt=[d] \n TotDataCnt=[d] \n Res1=[d] \n ParamCnt=[d] \n ParamOff=[d] \n Res2=[d] \n DataCnt=[d] \n DataOff=[d] \n Res3=[d] \n Lsetup=[d] \n " ;
365 smb_fdata ( ndo
, words
+ 1 , f1
, min ( words
+ 1 + 2 * words
[ 0 ], maxbuf
),
368 ND_TCHECK2 (* data1
, 2 );
369 bcc
= EXTRACT_LE_16BITS ( data1
);
370 ND_PRINT (( ndo
, "smb_bcc=%u \n " , bcc
));
372 smb_fdata ( ndo
, data1
+ 2 , f2
, maxbuf
- ( paramlen
+ datalen
), unicodestr
);
374 if ( strcmp (( const char *)( data1
+ 2 ), " \\ MAILSLOT \\ BROWSE" ) == 0 ) {
375 print_browse ( ndo
, param
, paramlen
, data
, datalen
);
379 if ( strcmp (( const char *)( data1
+ 2 ), " \\ PIPE \\ LANMAN" ) == 0 ) {
380 print_ipc ( ndo
, param
, paramlen
, data
, datalen
);
385 smb_fdata ( ndo
, param
, f3
, min ( param
+ paramlen
, maxbuf
), unicodestr
);
387 smb_fdata ( ndo
, data
, f4
, min ( data
+ datalen
, maxbuf
), unicodestr
);
391 ND_PRINT (( ndo
, "%s" , tstr
));
396 print_negprot ( netdissect_options
* ndo
,
397 const u_char
* words
, const u_char
* data
, const u_char
* buf _U_
, const u_char
* maxbuf
)
400 const char * f1
= NULL
, * f2
= NULL
;
405 f2
= "*|Dialect=[Y] \n " ;
408 f1
= "Core Protocol \n DialectIndex=[d]" ;
410 f1
= "NT1 Protocol \n DialectIndex=[d] \n SecMode=[B] \n MaxMux=[d] \n NumVcs=[d] \n MaxBuffer=[D] \n RawSize=[D] \n SessionKey=[W] \n Capabilities=[W] \n ServerTime=[T3]TimeZone=[d] \n CryptKey=" ;
412 f1
= "Coreplus/Lanman1/Lanman2 Protocol \n DialectIndex=[d] \n SecMode=[w] \n MaxXMit=[d] \n MaxMux=[d] \n MaxVcs=[d] \n BlkMode=[w] \n SessionKey=[W] \n ServerTime=[T1]TimeZone=[d] \n Res=[W] \n CryptKey=" ;
416 smb_fdata ( ndo
, words
+ 1 , f1
, min ( words
+ 1 + wct
* 2 , maxbuf
),
419 print_data ( ndo
, words
+ 1 , min ( wct
* 2 , PTR_DIFF ( maxbuf
, words
+ 1 )));
421 ND_TCHECK2 (* data
, 2 );
422 bcc
= EXTRACT_LE_16BITS ( data
);
423 ND_PRINT (( ndo
, "smb_bcc=%u \n " , bcc
));
426 smb_fdata ( ndo
, data
+ 2 , f2
, min ( data
+ 2 + EXTRACT_LE_16BITS ( data
),
427 maxbuf
), unicodestr
);
429 print_data ( ndo
, data
+ 2 , min ( EXTRACT_LE_16BITS ( data
), PTR_DIFF ( maxbuf
, data
+ 2 )));
433 ND_PRINT (( ndo
, "%s" , tstr
));
437 print_sesssetup ( netdissect_options
* ndo
,
438 const u_char
* words
, const u_char
* data
, const u_char
* buf _U_
, const u_char
* maxbuf
)
441 const char * f1
= NULL
, * f2
= NULL
;
447 f1
= "Com2=[w] \n Off2=[d] \n BufSize=[d] \n MpxMax=[d] \n VcNum=[d] \n SessionKey=[W] \n PassLen=[d] \n CryptLen=[d] \n CryptOff=[d] \n Pass&Name= \n " ;
449 f1
= "Com2=[B] \n Res1=[B] \n Off2=[d] \n MaxBuffer=[d] \n MaxMpx=[d] \n VcNumber=[d] \n SessionKey=[W] \n CaseInsensitivePasswordLength=[d] \n CaseSensitivePasswordLength=[d] \n Res=[W] \n Capabilities=[W] \n Pass1&Pass2&Account&Domain&OS&LanMan= \n " ;
452 f1
= "Com2=[w] \n Off2=[d] \n Action=[w] \n " ;
453 } else if ( wct
== 13 ) {
454 f1
= "Com2=[B] \n Res=[B] \n Off2=[d] \n Action=[w] \n " ;
455 f2
= "NativeOS=[S] \n NativeLanMan=[S] \n PrimaryDomain=[S] \n " ;
460 smb_fdata ( ndo
, words
+ 1 , f1
, min ( words
+ 1 + wct
* 2 , maxbuf
),
463 print_data ( ndo
, words
+ 1 , min ( wct
* 2 , PTR_DIFF ( maxbuf
, words
+ 1 )));
465 ND_TCHECK2 (* data
, 2 );
466 bcc
= EXTRACT_LE_16BITS ( data
);
467 ND_PRINT (( ndo
, "smb_bcc=%u \n " , bcc
));
470 smb_fdata ( ndo
, data
+ 2 , f2
, min ( data
+ 2 + EXTRACT_LE_16BITS ( data
),
471 maxbuf
), unicodestr
);
473 print_data ( ndo
, data
+ 2 , min ( EXTRACT_LE_16BITS ( data
), PTR_DIFF ( maxbuf
, data
+ 2 )));
477 ND_PRINT (( ndo
, "%s" , tstr
));
481 print_lockingandx ( netdissect_options
* ndo
,
482 const u_char
* words
, const u_char
* data
, const u_char
* buf _U_
, const u_char
* maxbuf
)
485 const u_char
* maxwords
;
486 const char * f1
= NULL
, * f2
= NULL
;
491 f1
= "Com2=[w] \n Off2=[d] \n Handle=[d] \n LockType=[w] \n TimeOut=[D] \n UnlockCount=[d] \n LockCount=[d] \n " ;
494 f2
= "*Process=[d] \n [P2]Offset=[M] \n Length=[M] \n " ;
496 f2
= "*Process=[d] \n Offset=[D] \n Length=[D] \n " ;
498 f1
= "Com2=[w] \n Off2=[d] \n " ;
501 maxwords
= min ( words
+ 1 + wct
* 2 , maxbuf
);
503 smb_fdata ( ndo
, words
+ 1 , f1
, maxwords
, unicodestr
);
505 ND_TCHECK2 (* data
, 2 );
506 bcc
= EXTRACT_LE_16BITS ( data
);
507 ND_PRINT (( ndo
, "smb_bcc=%u \n " , bcc
));
510 smb_fdata ( ndo
, data
+ 2 , f2
, min ( data
+ 2 + EXTRACT_LE_16BITS ( data
),
511 maxbuf
), unicodestr
);
513 print_data ( ndo
, data
+ 2 , min ( EXTRACT_LE_16BITS ( data
), PTR_DIFF ( maxbuf
, data
+ 2 )));
517 ND_PRINT (( ndo
, "%s" , tstr
));
521 static const struct smbfns smb_fns
[] = {
522 { - 1 , "SMBunknown" , 0 , DEFDESCRIPT
},
524 { SMBtcon
, "SMBtcon" , 0 ,
525 { NULL
, "Path=[Z] \n Password=[Z] \n Device=[Z] \n " ,
526 "MaxXmit=[d] \n TreeId=[d] \n " , NULL
,
529 { SMBtdis
, "SMBtdis" , 0 , DEFDESCRIPT
},
530 { SMBexit
, "SMBexit" , 0 , DEFDESCRIPT
},
531 { SMBioctl
, "SMBioctl" , 0 , DEFDESCRIPT
},
533 { SMBecho
, "SMBecho" , 0 ,
534 { "ReverbCount=[d] \n " , NULL
,
535 "SequenceNum=[d] \n " , NULL
,
538 { SMBulogoffX
, "SMBulogoffX" , FLG_CHAIN
, DEFDESCRIPT
},
540 { SMBgetatr
, "SMBgetatr" , 0 ,
541 { NULL
, "Path=[Z] \n " ,
542 "Attribute=[A] \n Time=[T2]Size=[D] \n Res=([w,w,w,w,w]) \n " , NULL
,
545 { SMBsetatr
, "SMBsetatr" , 0 ,
546 { "Attribute=[A] \n Time=[T2]Res=([w,w,w,w,w]) \n " , "Path=[Z] \n " ,
547 NULL
, NULL
, NULL
} },
549 { SMBchkpth
, "SMBchkpth" , 0 ,
550 { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
552 { SMBsearch
, "SMBsearch" , 0 ,
553 { "Count=[d] \n Attrib=[A] \n " ,
554 "Path=[Z] \n BlkType=[B] \n BlkLen=[d] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n Res2=[W] \n " ,
556 "BlkType=[B] \n BlkLen=[d] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[D] \n Name=[s13] \n " ,
559 { SMBopen
, "SMBopen" , 0 ,
560 { "Mode=[w] \n Attribute=[A] \n " , "Path=[Z] \n " ,
561 "Handle=[d] \n OAttrib=[A] \n Time=[T2]Size=[D] \n Access=[w] \n " ,
564 { SMBcreate
, "SMBcreate" , 0 ,
565 { "Attrib=[A] \n Time=[T2]" , "Path=[Z] \n " , "Handle=[d] \n " , NULL
, NULL
} },
567 { SMBmknew
, "SMBmknew" , 0 ,
568 { "Attrib=[A] \n Time=[T2]" , "Path=[Z] \n " , "Handle=[d] \n " , NULL
, NULL
} },
570 { SMBunlink
, "SMBunlink" , 0 ,
571 { "Attrib=[A] \n " , "Path=[Z] \n " , NULL
, NULL
, NULL
} },
573 { SMBread
, "SMBread" , 0 ,
574 { "Handle=[d] \n ByteCount=[d] \n Offset=[D] \n CountLeft=[d] \n " , NULL
,
575 "Count=[d] \n Res=([w,w,w,w]) \n " , NULL
, NULL
} },
577 { SMBwrite
, "SMBwrite" , 0 ,
578 { "Handle=[d] \n ByteCount=[d] \n Offset=[D] \n CountLeft=[d] \n " , NULL
,
579 "Count=[d] \n " , NULL
, NULL
} },
581 { SMBclose
, "SMBclose" , 0 ,
582 { "Handle=[d] \n Time=[T2]" , NULL
, NULL
, NULL
, NULL
} },
584 { SMBmkdir
, "SMBmkdir" , 0 ,
585 { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
587 { SMBrmdir
, "SMBrmdir" , 0 ,
588 { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
590 { SMBdskattr
, "SMBdskattr" , 0 ,
592 "TotalUnits=[d] \n BlocksPerUnit=[d] \n BlockSize=[d] \n FreeUnits=[d] \n Media=[w] \n " ,
596 { "Attrib=[A] \n " , "OldPath=[Z] \n NewPath=[Z] \n " , NULL
, NULL
, NULL
} },
599 * this is a Pathworks specific call, allowing the
600 * changing of the root path
602 { pSETDIR
, "SMBsetdir" , 0 , { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
604 { SMBlseek
, "SMBlseek" , 0 ,
605 { "Handle=[d] \n Mode=[w] \n Offset=[D] \n " , "Offset=[D] \n " , NULL
, NULL
, NULL
} },
607 { SMBflush
, "SMBflush" , 0 , { "Handle=[d] \n " , NULL
, NULL
, NULL
, NULL
} },
609 { SMBsplopen
, "SMBsplopen" , 0 ,
610 { "SetupLen=[d] \n Mode=[w] \n " , "Ident=[Z] \n " , "Handle=[d] \n " ,
613 { SMBsplclose
, "SMBsplclose" , 0 ,
614 { "Handle=[d] \n " , NULL
, NULL
, NULL
, NULL
} },
616 { SMBsplretq
, "SMBsplretq" , 0 ,
617 { "MaxCount=[d] \n StartIndex=[d] \n " , NULL
,
618 "Count=[d] \n Index=[d] \n " ,
619 "*Time=[T2]Status=[B] \n JobID=[d] \n Size=[D] \n Res=[B]Name=[s16] \n " ,
622 { SMBsplwr
, "SMBsplwr" , 0 ,
623 { "Handle=[d] \n " , NULL
, NULL
, NULL
, NULL
} },
625 { SMBlock
, "SMBlock" , 0 ,
626 { "Handle=[d] \n Count=[D] \n Offset=[D] \n " , NULL
, NULL
, NULL
, NULL
} },
628 { SMBunlock
, "SMBunlock" , 0 ,
629 { "Handle=[d] \n Count=[D] \n Offset=[D] \n " , NULL
, NULL
, NULL
, NULL
} },
631 /* CORE+ PROTOCOL FOLLOWS */
633 { SMBreadbraw
, "SMBreadbraw" , 0 ,
634 { "Handle=[d] \n Offset=[D] \n MaxCount=[d] \n MinCount=[d] \n TimeOut=[D] \n Res=[d] \n " ,
635 NULL
, NULL
, NULL
, NULL
} },
637 { SMBwritebraw
, "SMBwritebraw" , 0 ,
638 { "Handle=[d] \n TotalCount=[d] \n Res=[w] \n Offset=[D] \n TimeOut=[D] \n WMode=[w] \n Res2=[W] \n |DataSize=[d] \n DataOff=[d] \n " ,
639 NULL
, "WriteRawAck" , NULL
, NULL
} },
641 { SMBwritec
, "SMBwritec" , 0 ,
642 { NULL
, NULL
, "Count=[d] \n " , NULL
, NULL
} },
644 { SMBwriteclose
, "SMBwriteclose" , 0 ,
645 { "Handle=[d] \n Count=[d] \n Offset=[D] \n Time=[T2]Res=([w,w,w,w,w,w])" ,
646 NULL
, "Count=[d] \n " , NULL
, NULL
} },
648 { SMBlockread
, "SMBlockread" , 0 ,
649 { "Handle=[d] \n ByteCount=[d] \n Offset=[D] \n CountLeft=[d] \n " , NULL
,
650 "Count=[d] \n Res=([w,w,w,w]) \n " , NULL
, NULL
} },
652 { SMBwriteunlock
, "SMBwriteunlock" , 0 ,
653 { "Handle=[d] \n ByteCount=[d] \n Offset=[D] \n CountLeft=[d] \n " , NULL
,
654 "Count=[d] \n " , NULL
, NULL
} },
656 { SMBreadBmpx
, "SMBreadBmpx" , 0 ,
657 { "Handle=[d] \n Offset=[D] \n MaxCount=[d] \n MinCount=[d] \n TimeOut=[D] \n Res=[w] \n " ,
659 "Offset=[D] \n TotCount=[d] \n Remaining=[d] \n Res=([w,w]) \n DataSize=[d] \n DataOff=[d] \n " ,
662 { SMBwriteBmpx
, "SMBwriteBmpx" , 0 ,
663 { "Handle=[d] \n TotCount=[d] \n Res=[w] \n Offset=[D] \n TimeOut=[D] \n WMode=[w] \n Res2=[W] \n DataSize=[d] \n DataOff=[d] \n " , NULL
,
664 "Remaining=[d] \n " , NULL
, NULL
} },
666 { SMBwriteBs
, "SMBwriteBs" , 0 ,
667 { "Handle=[d] \n TotCount=[d] \n Offset=[D] \n Res=[W] \n DataSize=[d] \n DataOff=[d] \n " ,
668 NULL
, "Count=[d] \n " , NULL
, NULL
} },
670 { SMBsetattrE
, "SMBsetattrE" , 0 ,
671 { "Handle=[d] \n CreationTime=[T2]AccessTime=[T2]ModifyTime=[T2]" , NULL
,
672 NULL
, NULL
, NULL
} },
674 { SMBgetattrE
, "SMBgetattrE" , 0 ,
675 { "Handle=[d] \n " , NULL
,
676 "CreationTime=[T2]AccessTime=[T2]ModifyTime=[T2]Size=[D] \n AllocSize=[D] \n Attribute=[A] \n " ,
679 { SMBtranss
, "SMBtranss" , 0 , DEFDESCRIPT
},
680 { SMBioctls
, "SMBioctls" , 0 , DEFDESCRIPT
},
682 { SMBcopy
, "SMBcopy" , 0 ,
683 { "TreeID2=[d] \n OFun=[w] \n Flags=[w] \n " , "Path=[S] \n NewPath=[S] \n " ,
684 "CopyCount=[d] \n " , "|ErrStr=[S] \n " , NULL
} },
686 { SMBmove
, "SMBmove" , 0 ,
687 { "TreeID2=[d] \n OFun=[w] \n Flags=[w] \n " , "Path=[S] \n NewPath=[S] \n " ,
688 "MoveCount=[d] \n " , "|ErrStr=[S] \n " , NULL
} },
690 { SMBopenX
, "SMBopenX" , FLG_CHAIN
,
691 { "Com2=[w] \n Off2=[d] \n Flags=[w] \n Mode=[w] \n SearchAttrib=[A] \n Attrib=[A] \n Time=[T2]OFun=[w] \n Size=[D] \n TimeOut=[D] \n Res=[W] \n " ,
693 "Com2=[w] \n Off2=[d] \n Handle=[d] \n Attrib=[A] \n Time=[T2]Size=[D] \n Access=[w] \n Type=[w] \n State=[w] \n Action=[w] \n FileID=[W] \n Res=[w] \n " ,
696 { SMBreadX
, "SMBreadX" , FLG_CHAIN
,
697 { "Com2=[w] \n Off2=[d] \n Handle=[d] \n Offset=[D] \n MaxCount=[d] \n MinCount=[d] \n TimeOut=[D] \n CountLeft=[d] \n " ,
699 "Com2=[w] \n Off2=[d] \n Remaining=[d] \n Res=[W] \n DataSize=[d] \n DataOff=[d] \n Res=([w,w,w,w]) \n " ,
702 { SMBwriteX
, "SMBwriteX" , FLG_CHAIN
,
703 { "Com2=[w] \n Off2=[d] \n Handle=[d] \n Offset=[D] \n TimeOut=[D] \n WMode=[w] \n CountLeft=[d] \n Res=[w] \n DataSize=[d] \n DataOff=[d] \n " ,
705 "Com2=[w] \n Off2=[d] \n Count=[d] \n Remaining=[d] \n Res=[W] \n " ,
708 { SMBffirst
, "SMBffirst" , 0 ,
709 { "Count=[d] \n Attrib=[A] \n " ,
710 "Path=[Z] \n BlkType=[B] \n BlkLen=[d] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n " ,
712 "BlkType=[B] \n BlkLen=[d] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[D] \n Name=[s13] \n " ,
715 { SMBfunique
, "SMBfunique" , 0 ,
716 { "Count=[d] \n Attrib=[A] \n " ,
717 "Path=[Z] \n BlkType=[B] \n BlkLen=[d] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n " ,
719 "BlkType=[B] \n BlkLen=[d] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[D] \n Name=[s13] \n " ,
722 { SMBfclose
, "SMBfclose" , 0 ,
723 { "Count=[d] \n Attrib=[A] \n " ,
724 "Path=[Z] \n BlkType=[B] \n BlkLen=[d] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n " ,
726 "BlkType=[B] \n BlkLen=[d] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[d] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[D] \n Name=[s13] \n " ,
729 { SMBfindnclose
, "SMBfindnclose" , 0 ,
730 { "Handle=[d] \n " , NULL
, NULL
, NULL
, NULL
} },
732 { SMBfindclose
, "SMBfindclose" , 0 ,
733 { "Handle=[d] \n " , NULL
, NULL
, NULL
, NULL
} },
735 { SMBsends
, "SMBsends" , 0 ,
736 { NULL
, "Source=[Z] \n Dest=[Z] \n " , NULL
, NULL
, NULL
} },
738 { SMBsendstrt
, "SMBsendstrt" , 0 ,
739 { NULL
, "Source=[Z] \n Dest=[Z] \n " , "GroupID=[d] \n " , NULL
, NULL
} },
741 { SMBsendend
, "SMBsendend" , 0 ,
742 { "GroupID=[d] \n " , NULL
, NULL
, NULL
, NULL
} },
744 { SMBsendtxt
, "SMBsendtxt" , 0 ,
745 { "GroupID=[d] \n " , NULL
, NULL
, NULL
, NULL
} },
747 { SMBsendb
, "SMBsendb" , 0 ,
748 { NULL
, "Source=[Z] \n Dest=[Z] \n " , NULL
, NULL
, NULL
} },
750 { SMBfwdname
, "SMBfwdname" , 0 , DEFDESCRIPT
},
751 { SMBcancelf
, "SMBcancelf" , 0 , DEFDESCRIPT
},
752 { SMBgetmac
, "SMBgetmac" , 0 , DEFDESCRIPT
},
754 { SMBnegprot
, "SMBnegprot" , 0 ,
755 { NULL
, NULL
, NULL
, NULL
, print_negprot
} },
757 { SMBsesssetupX
, "SMBsesssetupX" , FLG_CHAIN
,
758 { NULL
, NULL
, NULL
, NULL
, print_sesssetup
} },
760 { SMBtconX
, "SMBtconX" , FLG_CHAIN
,
761 { "Com2=[w] \n Off2=[d] \n Flags=[w] \n PassLen=[d] \n Passwd&Path&Device= \n " ,
762 NULL
, "Com2=[w] \n Off2=[d] \n " , "ServiceType=[R] \n " , NULL
} },
764 { SMBlockingX
, "SMBlockingX" , FLG_CHAIN
,
765 { NULL
, NULL
, NULL
, NULL
, print_lockingandx
} },
767 { SMBtrans2
, "SMBtrans2" , 0 , { NULL
, NULL
, NULL
, NULL
, print_trans2
} },
769 { SMBtranss2
, "SMBtranss2" , 0 , DEFDESCRIPT
},
770 { SMBctemp
, "SMBctemp" , 0 , DEFDESCRIPT
},
771 { SMBreadBs
, "SMBreadBs" , 0 , DEFDESCRIPT
},
772 { SMBtrans
, "SMBtrans" , 0 , { NULL
, NULL
, NULL
, NULL
, print_trans
} },
774 { SMBnttrans
, "SMBnttrans" , 0 , DEFDESCRIPT
},
775 { SMBnttranss
, "SMBnttranss" , 0 , DEFDESCRIPT
},
777 { SMBntcreateX
, "SMBntcreateX" , FLG_CHAIN
,
778 { "Com2=[w] \n Off2=[d] \n Res=[b] \n NameLen=[ld] \n Flags=[W] \n RootDirectoryFid=[D] \n AccessMask=[W] \n AllocationSize=[L] \n ExtFileAttributes=[W] \n ShareAccess=[W] \n CreateDisposition=[W] \n CreateOptions=[W] \n ImpersonationLevel=[W] \n SecurityFlags=[b] \n " ,
780 "Com2=[w] \n Off2=[d] \n OplockLevel=[b] \n Fid=[d] \n CreateAction=[W] \n CreateTime=[T3]LastAccessTime=[T3]LastWriteTime=[T3]ChangeTime=[T3]ExtFileAttributes=[W] \n AllocationSize=[L] \n EndOfFile=[L] \n FileType=[w] \n DeviceState=[w] \n Directory=[b] \n " ,
783 { SMBntcancel
, "SMBntcancel" , 0 , DEFDESCRIPT
},
785 { - 1 , NULL
, 0 , DEFDESCRIPT
}
790 * print a SMB message
793 print_smb ( netdissect_options
* ndo
,
794 const u_char
* buf
, const u_char
* maxbuf
)
800 const u_char
* words
, * maxwords
, * data
;
801 const struct smbfns
* fn
;
802 const char * fmt_smbheader
=
803 "[P4]SMB Command = [B] \n Error class = [BP1] \n Error code = [d] \n Flags1 = [B] \n Flags2 = [B][P13] \n Tree ID = [d] \n Proc ID = [d] \n UID = [d] \n MID = [d] \n Word Count = [b] \n " ;
807 request
= ( buf
[ 9 ] & 0x80 ) ? 0 : 1 ;
808 flags2
= EXTRACT_LE_16BITS (& buf
[ 10 ]);
809 unicodestr
= flags2
& 0x8000 ;
810 nterrcodes
= flags2
& 0x4000 ;
815 fn
= smbfind ( command
, smb_fns
);
817 if ( ndo
-> ndo_vflag
> 1 )
818 ND_PRINT (( ndo
, " \n " ));
820 ND_PRINT (( ndo
, "SMB PACKET: %s (%s) \n " , fn
-> name
, request
? "REQUEST" : "REPLY" ));
822 if ( ndo
-> ndo_vflag
< 2 )
825 /* print out the header */
826 smb_fdata ( ndo
, buf
, fmt_smbheader
, buf
+ 33 , unicodestr
);
829 nterror
= EXTRACT_LE_32BITS (& buf
[ 5 ]);
831 ND_PRINT (( ndo
, "NTError = %s \n " , nt_errstr ( nterror
)));
834 ND_PRINT (( ndo
, "SMBError = %s \n " , smb_errstr ( buf
[ 5 ], EXTRACT_LE_16BITS (& buf
[ 7 ]))));
845 words
= buf
+ smboffset
;
848 data
= words
+ 1 + wct
* 2 ;
849 maxwords
= min ( data
, maxbuf
);
852 f1
= fn
-> descript
. req_f1
;
853 f2
= fn
-> descript
. req_f2
;
855 f1
= fn
-> descript
. rep_f1
;
856 f2
= fn
-> descript
. rep_f2
;
860 (* fn
-> descript
. fn
)( ndo
, words
, data
, buf
, maxbuf
);
864 smb_fdata ( ndo
, words
+ 1 , f1
, words
+ 1 + wct
* 2 , unicodestr
);
869 for ( i
= 0 ; & words
[ 1 + 2 * i
] < maxwords
; i
++) {
870 ND_TCHECK2 ( words
[ 1 + 2 * i
], 2 );
871 v
= EXTRACT_LE_16BITS ( words
+ 1 + 2 * i
);
872 ND_PRINT (( ndo
, "smb_vwv[%d]=%d (0x%X) \n " , i
, v
, v
));
877 ND_TCHECK2 (* data
, 2 );
878 bcc
= EXTRACT_LE_16BITS ( data
);
879 ND_PRINT (( ndo
, "smb_bcc=%u \n " , bcc
));
882 smb_fdata ( ndo
, data
+ 2 , f2
, data
+ 2 + bcc
, unicodestr
);
885 ND_PRINT (( ndo
, "smb_buf[]= \n " ));
886 print_data ( ndo
, data
+ 2 , min ( bcc
, PTR_DIFF ( maxbuf
, data
+ 2 )));
891 if (( fn
-> flags
& FLG_CHAIN
) == 0 )
899 ND_TCHECK2 ( words
[ 3 ], 2 );
900 newsmboffset
= EXTRACT_LE_16BITS ( words
+ 3 );
902 fn
= smbfind ( command
, smb_fns
);
904 ND_PRINT (( ndo
, " \n SMB PACKET: %s (%s) (CHAINED) \n " ,
905 fn
-> name
, request
? "REQUEST" : "REPLY" ));
906 if ( newsmboffset
<= smboffset
) {
907 ND_PRINT (( ndo
, "Bad andX offset: %u <= %u \n " , newsmboffset
, smboffset
));
910 smboffset
= newsmboffset
;
913 ND_PRINT (( ndo
, " \n " ));
916 ND_PRINT (( ndo
, "%s" , tstr
));
921 * print a NBT packet received across tcp on port 139
924 nbt_tcp_print ( netdissect_options
* ndo
,
925 const u_char
* data
, int length
)
930 const u_char
* maxbuf
;
934 if ( ndo
-> ndo_snapend
< data
)
936 caplen
= ndo
-> ndo_snapend
- data
;
939 maxbuf
= data
+ caplen
;
941 nbt_len
= EXTRACT_16BITS ( data
+ 2 );
947 if ( ndo
-> ndo_vflag
< 2 ) {
948 ND_PRINT (( ndo
, " NBT Session Packet: " ));
951 ND_PRINT (( ndo
, "Session Message" ));
955 ND_PRINT (( ndo
, "Session Request" ));
959 ND_PRINT (( ndo
, "Session Granted" ));
974 ND_PRINT (( ndo
, "Session Reject, " ));
977 ND_PRINT (( ndo
, "Not listening on called name" ));
980 ND_PRINT (( ndo
, "Not listening for calling name" ));
983 ND_PRINT (( ndo
, "Called name not present" ));
986 ND_PRINT (( ndo
, "Called name present, but insufficient resources" ));
989 ND_PRINT (( ndo
, "Unspecified error 0x%X" , ecode
));
996 ND_PRINT (( ndo
, "Session Keepalive" ));
1000 data
= smb_fdata ( ndo
, data
, "Unknown packet type [rB]" , maxbuf
, 0 );
1004 ND_PRINT (( ndo
, " \n >>> NBT Session Packet \n " ));
1007 data
= smb_fdata ( ndo
, data
, "[P1]NBT Session Message \n Flags=[B] \n Length=[rd] \n " ,
1011 if ( nbt_len
>= 4 && caplen
>= 4 && memcmp ( data
, " \377 SMB" , 4 ) == 0 ) {
1012 if (( int ) nbt_len
> caplen
) {
1013 if (( int ) nbt_len
> length
)
1014 ND_PRINT (( ndo
, "WARNING: Packet is continued in later TCP segments \n " ));
1016 ND_PRINT (( ndo
, "WARNING: Short packet. Try increasing the snap length by %d \n " ,
1019 print_smb ( ndo
, data
, maxbuf
> data
+ nbt_len
? data
+ nbt_len
: maxbuf
);
1021 ND_PRINT (( ndo
, "Session packet:(raw data or continuation?) \n " ));
1025 data
= smb_fdata ( ndo
, data
,
1026 "[P1]NBT Session Request \n Flags=[B] \n Length=[rd] \n Destination=[n1] \n Source=[n1] \n " ,
1031 data
= smb_fdata ( ndo
, data
, "[P1]NBT Session Granted \n Flags=[B] \n Length=[rd] \n " , maxbuf
, 0 );
1036 const u_char
* origdata
;
1040 data
= smb_fdata ( ndo
, data
, "[P1]NBT SessionReject \n Flags=[B] \n Length=[rd] \n Reason=[B] \n " ,
1044 if ( nbt_len
>= 1 && caplen
>= 1 ) {
1045 ecode
= origdata
[ 4 ];
1048 ND_PRINT (( ndo
, "Not listening on called name \n " ));
1051 ND_PRINT (( ndo
, "Not listening for calling name \n " ));
1054 ND_PRINT (( ndo
, "Called name not present \n " ));
1057 ND_PRINT (( ndo
, "Called name present, but insufficient resources \n " ));
1060 ND_PRINT (( ndo
, "Unspecified error 0x%X \n " , ecode
));
1068 data
= smb_fdata ( ndo
, data
, "[P1]NBT Session Keepalive \n Flags=[B] \n Length=[rd] \n " , maxbuf
, 0 );
1072 data
= smb_fdata ( ndo
, data
, "NBT - Unknown packet type \n Type=[B] \n " , maxbuf
, 0 );
1075 ND_PRINT (( ndo
, " \n " ));
1079 ND_PRINT (( ndo
, "%s" , tstr
));
1082 static const struct tok opcode_str
[] = {
1084 { 5 , "REGISTRATION" },
1087 { 8 , "REFRESH(8)" },
1089 { 15 , "MULTIHOMED REGISTRATION" },
1094 * print a NBT packet received across udp on port 137
1097 nbt_udp137_print ( netdissect_options
* ndo
,
1098 const u_char
* data
, int length
)
1100 const u_char
* maxbuf
= data
+ length
;
1101 int name_trn_id
, response
, opcode
, nm_flags
, rcode
;
1102 int qdcount
, ancount
, nscount
, arcount
;
1106 ND_TCHECK2 ( data
[ 10 ], 2 );
1107 name_trn_id
= EXTRACT_16BITS ( data
);
1108 response
= ( data
[ 2 ] >> 7 );
1109 opcode
= ( data
[ 2 ] >> 3 ) & 0xF ;
1110 nm_flags
= (( data
[ 2 ] & 0x7 ) << 4 ) + ( data
[ 3 ] >> 4 );
1111 rcode
= data
[ 3 ] & 0xF ;
1112 qdcount
= EXTRACT_16BITS ( data
+ 4 );
1113 ancount
= EXTRACT_16BITS ( data
+ 6 );
1114 nscount
= EXTRACT_16BITS ( data
+ 8 );
1115 arcount
= EXTRACT_16BITS ( data
+ 10 );
1121 if ( ndo
-> ndo_vflag
> 1 )
1122 ND_PRINT (( ndo
, " \n >>> " ));
1124 ND_PRINT (( ndo
, "NBT UDP PACKET(137): %s" , tok2str ( opcode_str
, "OPUNKNOWN" , opcode
)));
1126 ND_PRINT (( ndo
, "; %s" , rcode
? "NEGATIVE" : "POSITIVE" ));
1128 ND_PRINT (( ndo
, "; %s; %s" , response
? "RESPONSE" : "REQUEST" ,
1129 ( nm_flags
& 1 ) ? "BROADCAST" : "UNICAST" ));
1131 if ( ndo
-> ndo_vflag
< 2 )
1134 ND_PRINT (( ndo
, " \n TrnID=0x%X \n OpCode=%d \n NmFlags=0x%X \n Rcode=%d \n QueryCount=%d \n AnswerCount=%d \n AuthorityCount=%d \n AddressRecCount=%d \n " ,
1135 name_trn_id
, opcode
, nm_flags
, rcode
, qdcount
, ancount
, nscount
,
1140 total
= ancount
+ nscount
+ arcount
;
1142 if ( qdcount
> 100 || total
> 100 ) {
1143 ND_PRINT (( ndo
, "Corrupt packet?? \n " ));
1148 ND_PRINT (( ndo
, "QuestionRecords: \n " ));
1149 for ( i
= 0 ; i
< qdcount
; i
++) {
1150 p
= smb_fdata ( ndo
, p
,
1151 "|Name=[n1] \n QuestionType=[rw] \n QuestionClass=[rw] \n #" ,
1159 ND_PRINT (( ndo
, " \n ResourceRecords: \n " ));
1160 for ( i
= 0 ; i
< total
; i
++) {
1164 p
= smb_fdata ( ndo
, p
, "Name=[n1] \n #" , maxbuf
, 0 );
1167 restype
= EXTRACT_16BITS ( p
);
1168 p
= smb_fdata ( ndo
, p
, "ResType=[rw] \n ResClass=[rw] \n TTL=[rD] \n " , p
+ 8 , 0 );
1171 rdlen
= EXTRACT_16BITS ( p
);
1172 ND_PRINT (( ndo
, "ResourceLength=%d \n ResourceData= \n " , rdlen
));
1175 p
= smb_fdata ( ndo
, p
, "AddrType=[rw] \n Address=[b.b.b.b] \n " , p
+ rdlen
, 0 );
1179 if ( restype
== 0x21 ) {
1184 p
= smb_fdata ( ndo
, p
, "NumNames=[B] \n " , p
+ 1 , 0 );
1187 while ( numnames
--) {
1188 p
= smb_fdata ( ndo
, p
, "Name=[n2] \t #" , maxbuf
, 0 );
1193 ND_PRINT (( ndo
, "<GROUP> " ));
1194 switch ( p
[ 0 ] & 0x60 ) {
1195 case 0x00 : ND_PRINT (( ndo
, "B " )); break ;
1196 case 0x20 : ND_PRINT (( ndo
, "P " )); break ;
1197 case 0x40 : ND_PRINT (( ndo
, "M " )); break ;
1198 case 0x60 : ND_PRINT (( ndo
, "_ " )); break ;
1201 ND_PRINT (( ndo
, "<DEREGISTERING> " ));
1203 ND_PRINT (( ndo
, "<CONFLICT> " ));
1205 ND_PRINT (( ndo
, "<ACTIVE> " ));
1207 ND_PRINT (( ndo
, "<PERMANENT> " ));
1208 ND_PRINT (( ndo
, " \n " ));
1212 print_data ( ndo
, p
, min ( rdlen
, length
- ( p
- data
)));
1220 smb_fdata ( ndo
, p
, "AdditionalData: \n " , maxbuf
, 0 );
1223 ND_PRINT (( ndo
, " \n " ));
1226 ND_PRINT (( ndo
, "%s" , tstr
));
1230 * Print an SMB-over-TCP packet received across tcp on port 445
1233 smb_tcp_print ( netdissect_options
* ndo
,
1234 const u_char
* data
, int length
)
1238 const u_char
* maxbuf
;
1242 if ( ndo
-> ndo_snapend
< data
)
1244 caplen
= ndo
-> ndo_snapend
- data
;
1247 maxbuf
= data
+ caplen
;
1248 smb_len
= EXTRACT_24BITS ( data
+ 1 );
1255 if ( smb_len
>= 4 && caplen
>= 4 && memcmp ( data
, " \377 SMB" , 4 ) == 0 ) {
1256 if (( int ) smb_len
> caplen
) {
1257 if (( int ) smb_len
> length
)
1258 ND_PRINT (( ndo
, " WARNING: Packet is continued in later TCP segments \n " ));
1260 ND_PRINT (( ndo
, " WARNING: Short packet. Try increasing the snap length by %d \n " ,
1263 ND_PRINT (( ndo
, " " ));
1264 print_smb ( ndo
, data
, maxbuf
> data
+ smb_len
? data
+ smb_len
: maxbuf
);
1266 ND_PRINT (( ndo
, " SMB-over-TCP packet:(raw data or continuation?) \n " ));
1269 ND_PRINT (( ndo
, "%s" , tstr
));
1273 * print a NBT packet received across udp on port 138
1276 nbt_udp138_print ( netdissect_options
* ndo
,
1277 const u_char
* data
, int length
)
1279 const u_char
* maxbuf
= data
+ length
;
1281 if ( maxbuf
> ndo
-> ndo_snapend
)
1282 maxbuf
= ndo
-> ndo_snapend
;
1287 if ( ndo
-> ndo_vflag
< 2 ) {
1288 ND_PRINT (( ndo
, "NBT UDP PACKET(138)" ));
1292 data
= smb_fdata ( ndo
, data
,
1293 " \n >>> NBT UDP PACKET(138) Res=[rw] ID=[rw] IP=[b.b.b.b] Port=[rd] Length=[rd] Res2=[rw] \n SourceName=[n1] \n DestName=[n1] \n #" ,
1297 /* If there isn't enough data for "\377SMB", don't check for it. */
1298 if (& data
[ 3 ] >= maxbuf
)
1301 if ( memcmp ( data
, " \377 SMB" , 4 ) == 0 )
1302 print_smb ( ndo
, data
, maxbuf
);
1305 ND_PRINT (( ndo
, " \n " ));
1310 print netbeui frames
1312 struct nbf_strings
{
1314 const char * nonverbose
;
1315 const char * verbose
;
1316 } nbf_strings
[ 0x20 ] = {
1317 { "Add Group Name Query" , ", [P23]Name to add=[n2]#" ,
1318 "[P5]ResponseCorrelator=[w] \n [P16]Name to add=[n2] \n " },
1319 { "Add Name Query" , ", [P23]Name to add=[n2]#" ,
1320 "[P5]ResponseCorrelator=[w] \n [P16]Name to add=[n2] \n " },
1321 { "Name In Conflict" , NULL
, NULL
},
1322 { "Status Query" , NULL
, NULL
},
1323 { NULL
, NULL
, NULL
}, /* not used */
1324 { NULL
, NULL
, NULL
}, /* not used */
1325 { NULL
, NULL
, NULL
}, /* not used */
1326 { "Terminate Trace" , NULL
, NULL
},
1328 "[P7]Destination=[n2] \n Source=[n2] \n " },
1329 { "Broadcast Datagram" , NULL
,
1330 "[P7]Destination=[n2] \n Source=[n2] \n " },
1331 { "Name Query" , ", [P7]Name=[n2]#" ,
1332 "[P1]SessionNumber=[B] \n NameType=[B][P2] \n ResponseCorrelator=[w] \n Name=[n2] \n Name of sender=[n2] \n " },
1333 { NULL
, NULL
, NULL
}, /* not used */
1334 { NULL
, NULL
, NULL
}, /* not used */
1335 { "Add Name Response" , ", [P1]GroupName=[w] [P4]Destination=[n2] Source=[n2]#" ,
1336 "AddNameInProcess=[B] \n GroupName=[w] \n TransmitCorrelator=[w][P2] \n Destination=[n2] \n Source=[n2] \n " },
1337 { "Name Recognized" , NULL
,
1338 "[P1]Data2=[w] \n TransmitCorrelator=[w] \n ResponseCorelator=[w] \n Destination=[n2] \n Source=[n2] \n " },
1339 { "Status Response" , NULL
, NULL
},
1340 { NULL
, NULL
, NULL
}, /* not used */
1341 { NULL
, NULL
, NULL
}, /* not used */
1342 { NULL
, NULL
, NULL
}, /* not used */
1343 { "Terminate Trace" , NULL
, NULL
},
1345 "[P3]TransmitCorrelator=[w][P2] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1346 { "Data First/Middle" , NULL
,
1347 "Flags=[{RECEIVE_CONTINUE|NO_ACK||PIGGYBACK_ACK_INCLUDED|}] \n ResyncIndicator=[w][P2] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1348 { "Data Only/Last" , NULL
,
1349 "Flags=[{|NO_ACK|PIGGYBACK_ACK_ALLOWED|PIGGYBACK_ACK_INCLUDED|}] \n ResyncIndicator=[w][P2] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1350 { "Session Confirm" , NULL
,
1351 "Data1=[B] \n Data2=[w] \n TransmitCorrelator=[w] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1352 { "Session End" , NULL
,
1353 "[P1]Data2=[w][P4] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1354 { "Session Initialize" , NULL
,
1355 "Data1=[B] \n Data2=[w] \n TransmitCorrelator=[w] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1356 { "No Receive" , NULL
,
1357 "Flags=[{|SEND_NO_ACK}] \n DataBytesAccepted=[b][P4] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1358 { "Receive Outstanding" , NULL
,
1359 "[P1]DataBytesAccepted=[b][P4] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1360 { "Receive Continue" , NULL
,
1361 "[P2]TransmitCorrelator=[w] \n [P2]RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1362 { NULL
, NULL
, NULL
}, /* not used */
1363 { NULL
, NULL
, NULL
}, /* not used */
1364 { "Session Alive" , NULL
, NULL
}
1368 netbeui_print ( netdissect_options
* ndo
,
1369 u_short control
, const u_char
* data
, int length
)
1371 const u_char
* maxbuf
= data
+ length
;
1374 const u_char
* data2
;
1375 int is_truncated
= 0 ;
1377 if ( maxbuf
> ndo
-> ndo_snapend
)
1378 maxbuf
= ndo
-> ndo_snapend
;
1380 len
= EXTRACT_LE_16BITS ( data
);
1383 if ( data2
>= maxbuf
) {
1390 if ( ndo
-> ndo_vflag
< 2 ) {
1391 ND_PRINT (( ndo
, "NBF Packet: " ));
1392 data
= smb_fdata ( ndo
, data
, "[P5]#" , maxbuf
, 0 );
1394 ND_PRINT (( ndo
, " \n >>> NBF Packet \n Type=0x%X " , control
));
1395 data
= smb_fdata ( ndo
, data
, "Length=[d] Signature=[w] Command=[B] \n #" , maxbuf
, 0 );
1400 if ( command
> 0x1f || nbf_strings
[ command
]. name
== NULL
) {
1401 if ( ndo
-> ndo_vflag
< 2 )
1402 data
= smb_fdata ( ndo
, data
, "Unknown NBF Command#" , data2
, 0 );
1404 data
= smb_fdata ( ndo
, data
, "Unknown NBF Command \n " , data2
, 0 );
1406 if ( ndo
-> ndo_vflag
< 2 ) {
1407 ND_PRINT (( ndo
, "%s" , nbf_strings
[ command
]. name
));
1408 if ( nbf_strings
[ command
]. nonverbose
!= NULL
)
1409 data
= smb_fdata ( ndo
, data
, nbf_strings
[ command
]. nonverbose
, data2
, 0 );
1411 ND_PRINT (( ndo
, "%s: \n " , nbf_strings
[ command
]. name
));
1412 if ( nbf_strings
[ command
]. verbose
!= NULL
)
1413 data
= smb_fdata ( ndo
, data
, nbf_strings
[ command
]. verbose
, data2
, 0 );
1415 ND_PRINT (( ndo
, " \n " ));
1419 if ( ndo
-> ndo_vflag
< 2 )
1426 /* data2 was past the end of the buffer */
1430 /* If this isn't a command that would contain an SMB message, quit. */
1431 if ( command
!= 0x08 && command
!= 0x09 && command
!= 0x15 &&
1435 /* If there isn't enough data for "\377SMB", don't look for it. */
1436 if (& data2
[ 3 ] >= maxbuf
)
1439 if ( memcmp ( data2
, " \377 SMB" , 4 ) == 0 )
1440 print_smb ( ndo
, data2
, maxbuf
);
1443 for ( i
= 0 ; i
< 128 ; i
++) {
1444 if (& data2
[ i
+ 3 ] >= maxbuf
)
1446 if ( memcmp (& data2
[ i
], " \377 SMB" , 4 ) == 0 ) {
1447 ND_PRINT (( ndo
, "found SMB packet at %d \n " , i
));
1448 print_smb ( ndo
, & data2
[ i
], maxbuf
);
1455 ND_PRINT (( ndo
, " \n " ));
1458 ND_PRINT (( ndo
, "%s" , tstr
));
1463 * print IPX-Netbios frames
1466 ipx_netbios_print ( netdissect_options
* ndo
,
1467 const u_char
* data
, u_int length
)
1470 * this is a hack till I work out how to parse the rest of the
1471 * NetBIOS-over-IPX stuff
1474 const u_char
* maxbuf
;
1476 maxbuf
= data
+ length
;
1477 /* Don't go past the end of the captured data in the packet. */
1478 if ( maxbuf
> ndo
-> ndo_snapend
)
1479 maxbuf
= ndo
-> ndo_snapend
;
1481 for ( i
= 0 ; i
< 128 ; i
++) {
1482 if (& data
[ i
+ 4 ] > maxbuf
)
1484 if ( memcmp (& data
[ i
], " \377 SMB" , 4 ) == 0 ) {
1485 smb_fdata ( ndo
, data
, " \n >>> IPX transport " , & data
[ i
], 0 );
1486 print_smb ( ndo
, & data
[ i
], maxbuf
);
1487 ND_PRINT (( ndo
, " \n " ));
1492 smb_fdata ( ndo
, data
, " \n >>> Unknown IPX " , maxbuf
, 0 );