]>
The Tcpdump Group git mirrors - tcpdump/blob - print-smb.c
fa7a2c024782d64ab23f34d2c075cfd494988d0a
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 /* \summary: SMB/CIFS printer */
15 #include "netdissect-stdinc.h"
19 #include "netdissect.h"
24 static int request
= 0 ;
25 static int unicodestr
= 0 ;
27 extern const u_char
* startbuf
;
29 const u_char
* startbuf
= NULL
;
36 void (* fn
)( netdissect_options
*, const u_char
*, const u_char
*, const u_char
*, const u_char
*);
39 struct smbdescriptint
{
44 void (* fn
)( netdissect_options
*, const u_char
*, const u_char
*, u_int
, u_int
);
52 struct smbdescript descript
;
60 struct smbdescriptint descript
;
63 #define DEFDESCRIPT { NULL, NULL, NULL, NULL, NULL }
65 #define FLG_CHAIN (1 << 0)
67 static const struct smbfns
*
68 smbfind ( int id
, const struct smbfns
* list
)
72 for ( sindex
= 0 ; list
[ sindex
]. name
; sindex
++)
73 if ( list
[ sindex
]. id
== id
)
74 return (& list
[ sindex
]);
79 static const struct smbfnsint
*
80 smbfindint ( int id
, const struct smbfnsint
* list
)
84 for ( sindex
= 0 ; list
[ sindex
]. name
; sindex
++)
85 if ( list
[ sindex
]. id
== id
)
86 return (& list
[ sindex
]);
92 trans2_findfirst ( netdissect_options
* ndo
,
93 const u_char
* param
, const u_char
* data
, u_int pcnt
, u_int dcnt
)
98 fmt
= "Attribute=[A] \n SearchCount=[u] \n Flags=[w] \n Level=[uP4] \n File=[S] \n " ;
100 fmt
= "Handle=[w] \n Count=[u] \n EOS=[w] \n Eoffset=[u] \n LastNameOfs=[w] \n " ;
102 smb_fdata ( ndo
, param
, fmt
, param
+ pcnt
, unicodestr
);
105 smb_data_print ( ndo
, data
, dcnt
);
110 trans2_qfsinfo ( netdissect_options
* ndo
,
111 const u_char
* param
, const u_char
* data
, u_int pcnt
, u_int dcnt
)
113 static u_int level
= 0 ;
117 level
= GET_LE_U_2 ( param
);
118 fmt
= "InfoLevel=[u] \n " ;
119 smb_fdata ( ndo
, param
, fmt
, param
+ pcnt
, unicodestr
);
123 fmt
= "idFileSystem=[W] \n SectorUnit=[U] \n Unit=[U] \n Avail=[U] \n SectorSize=[u] \n " ;
126 fmt
= "CreationTime=[T2]VolNameLength=[lb] \n VolumeLabel=[c] \n " ;
129 fmt
= "Capabilities=[W] \n MaxFileLen=[U] \n VolNameLen=[lU] \n Volume=[C] \n " ;
132 fmt
= "UnknownLevel \n " ;
135 smb_fdata ( ndo
, data
, fmt
, data
+ dcnt
, unicodestr
);
139 smb_data_print ( ndo
, data
, dcnt
);
143 static const struct smbfnsint trans2_fns
[] = {
144 { 0 , "TRANSACT2_OPEN" , 0 ,
145 { "Flags2=[w] \n Mode=[w] \n SearchAttrib=[A] \n Attrib=[A] \n Time=[T2] \n OFun=[w] \n Size=[U] \n Res=([w, w, w, w, w]) \n Path=[S]" ,
147 "Handle=[u] \n Attrib=[A] \n Time=[T2] \n Size=[U] \n Access=[w] \n Type=[w] \n State=[w] \n Action=[w] \n Inode=[W] \n OffErr=[u] \n |EALength=[u] \n " ,
149 { 1 , "TRANSACT2_FINDFIRST" , 0 ,
150 { NULL
, NULL
, NULL
, NULL
, trans2_findfirst
}},
151 { 2 , "TRANSACT2_FINDNEXT" , 0 , DEFDESCRIPT
},
152 { 3 , "TRANSACT2_QFSINFO" , 0 ,
153 { NULL
, NULL
, NULL
, NULL
, trans2_qfsinfo
}},
154 { 4 , "TRANSACT2_SETFSINFO" , 0 , DEFDESCRIPT
},
155 { 5 , "TRANSACT2_QPATHINFO" , 0 , DEFDESCRIPT
},
156 { 6 , "TRANSACT2_SETPATHINFO" , 0 , DEFDESCRIPT
},
157 { 7 , "TRANSACT2_QFILEINFO" , 0 , DEFDESCRIPT
},
158 { 8 , "TRANSACT2_SETFILEINFO" , 0 , DEFDESCRIPT
},
159 { 9 , "TRANSACT2_FSCTL" , 0 , DEFDESCRIPT
},
160 { 10 , "TRANSACT2_IOCTL" , 0 , DEFDESCRIPT
},
161 { 11 , "TRANSACT2_FINDNOTIFYFIRST" , 0 , DEFDESCRIPT
},
162 { 12 , "TRANSACT2_FINDNOTIFYNEXT" , 0 , DEFDESCRIPT
},
163 { 13 , "TRANSACT2_MKDIR" , 0 , DEFDESCRIPT
},
164 { - 1 , NULL
, 0 , DEFDESCRIPT
}
169 print_trans2 ( netdissect_options
* ndo
,
170 const u_char
* words
, const u_char
* dat
, const u_char
* buf
, const u_char
* maxbuf
)
173 static const struct smbfnsint
* fn
= & trans2_fns
[ 0 ];
174 const u_char
* data
, * param
;
175 const u_char
* w
= words
+ 1 ;
176 const char * f1
= NULL
, * f2
= NULL
;
181 ND_TCHECK_2 ( w
+ ( 14 * 2 ));
182 pcnt
= GET_LE_U_2 ( w
+ 9 * 2 );
183 param
= buf
+ GET_LE_U_2 ( w
+ 10 * 2 );
184 dcnt
= GET_LE_U_2 ( w
+ 11 * 2 );
185 data
= buf
+ GET_LE_U_2 ( w
+ 12 * 2 );
186 fn
= smbfindint ( GET_LE_U_2 ( w
+ 14 * 2 ), trans2_fns
);
188 if ( GET_U_1 ( words
) == 0 ) {
189 ND_PRINT ( "%s \n " , fn
-> name
);
190 ND_PRINT ( "Trans2Interim \n " );
193 ND_TCHECK_2 ( w
+ ( 7 * 2 ));
194 pcnt
= GET_LE_U_2 ( w
+ 3 * 2 );
195 param
= buf
+ GET_LE_U_2 ( w
+ 4 * 2 );
196 dcnt
= GET_LE_U_2 ( w
+ 6 * 2 );
197 data
= buf
+ GET_LE_U_2 ( w
+ 7 * 2 );
200 ND_PRINT ( "%s param_length=%u data_length=%u \n " , fn
-> name
, pcnt
, dcnt
);
203 if ( GET_U_1 ( words
) == 8 ) {
204 smb_fdata ( ndo
, words
+ 1 ,
205 "Trans2Secondary \n TotParam=[u] \n TotData=[u] \n ParamCnt=[u] \n ParamOff=[u] \n ParamDisp=[u] \n DataCnt=[u] \n DataOff=[u] \n DataDisp=[u] \n Handle=[u] \n " ,
209 smb_fdata ( ndo
, words
+ 1 ,
210 "TotParam=[u] \n TotData=[u] \n MaxParam=[u] \n MaxData=[u] \n MaxSetup=[b][P1] \n Flags=[w] \n TimeOut=[D] \n Res1=[w] \n ParamCnt=[u] \n ParamOff=[u] \n DataCnt=[u] \n DataOff=[u] \n SetupCnt=[b][P1] \n " ,
211 words
+ 1 + 14 * 2 , unicodestr
);
213 f1
= fn
-> descript
. req_f1
;
214 f2
= fn
-> descript
. req_f2
;
216 smb_fdata ( ndo
, words
+ 1 ,
217 "TotParam=[u] \n TotData=[u] \n Res1=[w] \n ParamCnt=[u] \n ParamOff=[u] \n ParamDisp[u] \n DataCnt=[u] \n DataOff=[u] \n DataDisp=[u] \n SetupCnt=[b][P1] \n " ,
218 words
+ 1 + 10 * 2 , unicodestr
);
219 f1
= fn
-> descript
. rep_f1
;
220 f2
= fn
-> descript
. rep_f2
;
223 bcc
= GET_LE_U_2 ( dat
);
224 ND_PRINT ( "smb_bcc=%u \n " , bcc
);
226 (* fn
-> descript
. fn
)( ndo
, param
, data
, pcnt
, dcnt
);
228 smb_fdata ( ndo
, param
, f1
? f1
: "Parameters= \n " , param
+ pcnt
, unicodestr
);
229 smb_fdata ( ndo
, data
, f2
? f2
: "Data= \n " , data
+ dcnt
, unicodestr
);
237 print_browse ( netdissect_options
* ndo
,
238 const u_char
* param
, u_int paramlen
, const u_char
* data
, u_int datalen
)
240 const u_char
* maxbuf
= data
+ datalen
;
243 command
= GET_U_1 ( data
);
245 smb_fdata ( ndo
, param
, "BROWSE PACKET \n |Param " , param
+ paramlen
, unicodestr
);
249 data
= smb_fdata ( ndo
, data
,
250 "BROWSE PACKET: \n Type=[B] (LocalMasterAnnouncement) \n UpdateCount=[w] \n Res1=[B] \n AnnounceInterval=[u] \n Name=[n2] \n MajorVersion=[B] \n MinorVersion=[B] \n ServerType=[W] \n ElectionVersion=[w] \n BrowserConstant=[w] \n " ,
255 data
= smb_fdata ( ndo
, data
,
256 "BROWSE PACKET: \n Type=[B] (HostAnnouncement) \n UpdateCount=[w] \n Res1=[B] \n AnnounceInterval=[u] \n Name=[n2] \n MajorVersion=[B] \n MinorVersion=[B] \n ServerType=[W] \n ElectionVersion=[w] \n BrowserConstant=[w] \n " ,
261 data
= smb_fdata ( ndo
, data
,
262 "BROWSE PACKET: \n Type=[B] (AnnouncementRequest) \n Flags=[B] \n ReplySystemName=[S] \n " ,
267 data
= smb_fdata ( ndo
, data
,
268 "BROWSE PACKET: \n Type=[B] (WorkgroupAnnouncement) \n UpdateCount=[w] \n Res1=[B] \n AnnounceInterval=[u] \n Name=[n2] \n MajorVersion=[B] \n MinorVersion=[B] \n ServerType=[W] \n CommentPointer=[W] \n ServerName=[S] \n " ,
273 data
= smb_fdata ( ndo
, data
,
274 "BROWSE PACKET: \n Type=[B] (ElectionFrame) \n ElectionVersion=[B] \n OSSummary=[W] \n Uptime=[(W, W)] \n ServerName=[S] \n " ,
279 data
= smb_fdata ( ndo
, data
,
280 "BROWSE PACKET: \n Type=[B] (BecomeBackupBrowser) \n Name=[S] \n " ,
285 data
= smb_fdata ( ndo
, data
,
286 "BROWSE PACKET: \n Type=[B] (GetBackupList) \n ListCount?=[B] \n Token=[W] \n " ,
291 data
= smb_fdata ( ndo
, data
,
292 "BROWSE PACKET: \n Type=[B] (BackupListResponse) \n ServerCount?=[B] \n Token=[W] \n *Name=[S] \n " ,
297 data
= smb_fdata ( ndo
, data
,
298 "BROWSE PACKET: \n Type=[B] (MasterAnnouncement) \n MasterName=[S] \n " ,
303 data
= smb_fdata ( ndo
, data
,
304 "BROWSE PACKET: \n Type=[B] (ResetBrowser) \n Options=[B] \n " , maxbuf
, unicodestr
);
308 data
= smb_fdata ( ndo
, data
, "Unknown Browser Frame " , maxbuf
, unicodestr
);
315 print_ipc ( netdissect_options
* ndo
,
316 const u_char
* param
, u_int paramlen
, const u_char
* data
, u_int datalen
)
319 smb_fdata ( ndo
, param
, "Command=[w] \n Str1=[S] \n Str2=[S] \n " , param
+ paramlen
,
322 smb_fdata ( ndo
, data
, "IPC " , data
+ datalen
, unicodestr
);
327 print_trans ( netdissect_options
* ndo
,
328 const u_char
* words
, const u_char
* data1
, const u_char
* buf
, const u_char
* maxbuf
)
331 const char * f1
, * f2
, * f3
, * f4
;
332 const u_char
* data
, * param
;
333 const u_char
* w
= words
+ 1 ;
334 u_int datalen
, paramlen
;
337 ND_TCHECK_2 ( w
+ ( 12 * 2 ));
338 paramlen
= GET_LE_U_2 ( w
+ 9 * 2 );
339 param
= buf
+ GET_LE_U_2 ( w
+ 10 * 2 );
340 datalen
= GET_LE_U_2 ( w
+ 11 * 2 );
341 data
= buf
+ GET_LE_U_2 ( w
+ 12 * 2 );
342 f1
= "TotParamCnt=[u] \n TotDataCnt=[u] \n MaxParmCnt=[u] \n MaxDataCnt=[u] \n MaxSCnt=[u] \n TransFlags=[w] \n Res1=[w] \n Res2=[w] \n Res3=[w] \n ParamCnt=[u] \n ParamOff=[u] \n DataCnt=[u] \n DataOff=[u] \n SUCnt=[u] \n " ;
347 ND_TCHECK_2 ( w
+ ( 7 * 2 ));
348 paramlen
= GET_LE_U_2 ( w
+ 3 * 2 );
349 param
= buf
+ GET_LE_U_2 ( w
+ 4 * 2 );
350 datalen
= GET_LE_U_2 ( w
+ 6 * 2 );
351 data
= buf
+ GET_LE_U_2 ( w
+ 7 * 2 );
352 f1
= "TotParamCnt=[u] \n TotDataCnt=[u] \n Res1=[u] \n ParamCnt=[u] \n ParamOff=[u] \n Res2=[u] \n DataCnt=[u] \n DataOff=[u] \n Res3=[u] \n Lsetup=[u] \n " ;
358 smb_fdata ( ndo
, words
+ 1 , f1
,
359 ND_MIN ( words
+ 1 + 2 * GET_U_1 ( words
), maxbuf
),
362 bcc
= GET_LE_U_2 ( data1
);
363 ND_PRINT ( "smb_bcc=%u \n " , bcc
);
365 smb_fdata ( ndo
, data1
+ 2 , f2
, maxbuf
- ( paramlen
+ datalen
), unicodestr
);
367 #define MAILSLOT_BROWSE_STR " \\ MAILSLOT \\ BROWSE"
368 ND_TCHECK_LEN ( data1
+ 2 , strlen ( MAILSLOT_BROWSE_STR
) + 1 );
369 if ( strcmp (( const char *)( data1
+ 2 ), MAILSLOT_BROWSE_STR
) == 0 ) {
370 print_browse ( ndo
, param
, paramlen
, data
, datalen
);
373 #undef MAILSLOT_BROWSE_STR
375 #define PIPE_LANMAN_STR " \\ PIPE \\ LANMAN"
376 ND_TCHECK_LEN ( data1
+ 2 , strlen ( PIPE_LANMAN_STR
) + 1 );
377 if ( strcmp (( const char *)( data1
+ 2 ), PIPE_LANMAN_STR
) == 0 ) {
378 print_ipc ( ndo
, param
, paramlen
, data
, datalen
);
381 #undef PIPE_LANMAN_STR
384 smb_fdata ( ndo
, param
, f3
, ND_MIN ( param
+ paramlen
, maxbuf
), unicodestr
);
386 smb_fdata ( ndo
, data
, f4
, ND_MIN ( data
+ datalen
, maxbuf
), unicodestr
);
395 print_negprot ( netdissect_options
* ndo
,
396 const u_char
* words
, const u_char
* data
, const u_char
* buf _U_
, const u_char
* maxbuf
)
399 const char * f1
= NULL
, * f2
= NULL
;
401 wct
= GET_U_1 ( words
);
403 f2
= "*|Dialect=[Y] \n " ;
406 f1
= "Core Protocol \n DialectIndex=[u]" ;
408 f1
= "NT1 Protocol \n DialectIndex=[u] \n SecMode=[B] \n MaxMux=[u] \n NumVcs=[u] \n MaxBuffer=[U] \n RawSize=[U] \n SessionKey=[W] \n Capabilities=[W] \n ServerTime=[T3]TimeZone=[u] \n CryptKey=" ;
410 f1
= "Coreplus/Lanman1/Lanman2 Protocol \n DialectIndex=[u] \n SecMode=[w] \n MaxXMit=[u] \n MaxMux=[u] \n MaxVcs=[u] \n BlkMode=[w] \n SessionKey=[W] \n ServerTime=[T1]TimeZone=[u] \n Res=[W] \n CryptKey=" ;
414 smb_fdata ( ndo
, words
+ 1 , f1
, ND_MIN ( words
+ 1 + wct
* 2 , maxbuf
),
417 smb_data_print ( ndo
, words
+ 1 ,
418 ND_MIN ( wct
* 2 , ND_BYTES_BETWEEN ( words
+ 1 , maxbuf
)));
420 bcc
= GET_LE_U_2 ( data
);
421 ND_PRINT ( "smb_bcc=%u \n " , bcc
);
424 smb_fdata ( ndo
, data
+ 2 , f2
, ND_MIN ( data
+ 2 + GET_LE_U_2 ( data
),
425 maxbuf
), unicodestr
);
427 smb_data_print ( ndo
, data
+ 2 ,
428 ND_MIN ( GET_LE_U_2 ( data
), ND_BYTES_BETWEEN ( data
+ 2 , maxbuf
)));
433 print_sesssetup ( netdissect_options
* ndo
,
434 const u_char
* words
, const u_char
* data
, const u_char
* buf _U_
, const u_char
* maxbuf
)
437 const char * f1
= NULL
, * f2
= NULL
;
439 wct
= GET_U_1 ( words
);
442 f1
= "Com2=[w] \n Off2=[u] \n BufSize=[u] \n MpxMax=[u] \n VcNum=[u] \n SessionKey=[W] \n PassLen=[u] \n CryptLen=[u] \n CryptOff=[u] \n Pass&Name= \n " ;
444 f1
= "Com2=[B] \n Res1=[B] \n Off2=[u] \n MaxBuffer=[u] \n MaxMpx=[u] \n VcNumber=[u] \n SessionKey=[W] \n CaseInsensitivePasswordLength=[u] \n CaseSensitivePasswordLength=[u] \n Res=[W] \n Capabilities=[W] \n Pass1&Pass2&Account&Domain&OS&LanMan= \n " ;
447 f1
= "Com2=[w] \n Off2=[u] \n Action=[w] \n " ;
448 } else if ( wct
== 13 ) {
449 f1
= "Com2=[B] \n Res=[B] \n Off2=[u] \n Action=[w] \n " ;
450 f2
= "NativeOS=[S] \n NativeLanMan=[S] \n PrimaryDomain=[S] \n " ;
455 smb_fdata ( ndo
, words
+ 1 , f1
, ND_MIN ( words
+ 1 + wct
* 2 , maxbuf
),
458 smb_data_print ( ndo
, words
+ 1 ,
459 ND_MIN ( wct
* 2 , ND_BYTES_BETWEEN ( words
+ 1 , maxbuf
)));
461 bcc
= GET_LE_U_2 ( data
);
462 ND_PRINT ( "smb_bcc=%u \n " , bcc
);
465 smb_fdata ( ndo
, data
+ 2 , f2
, ND_MIN ( data
+ 2 + GET_LE_U_2 ( data
),
466 maxbuf
), unicodestr
);
468 smb_data_print ( ndo
, data
+ 2 ,
469 ND_MIN ( GET_LE_U_2 ( data
), ND_BYTES_BETWEEN ( data
+ 2 , maxbuf
)));
474 print_lockingandx ( netdissect_options
* ndo
,
475 const u_char
* words
, const u_char
* data
, const u_char
* buf _U_
, const u_char
* maxbuf
)
478 const u_char
* maxwords
;
479 const char * f1
= NULL
, * f2
= NULL
;
481 wct
= GET_U_1 ( words
);
483 f1
= "Com2=[w] \n Off2=[u] \n Handle=[u] \n LockType=[w] \n TimeOut=[D] \n UnlockCount=[u] \n LockCount=[u] \n " ;
484 if ( GET_U_1 ( words
+ 7 ) & 0x10 )
485 f2
= "*Process=[u] \n [P2]Offset=[M] \n Length=[M] \n " ;
487 f2
= "*Process=[u] \n Offset=[D] \n Length=[U] \n " ;
489 f1
= "Com2=[w] \n Off2=[u] \n " ;
492 maxwords
= ND_MIN ( words
+ 1 + wct
* 2 , maxbuf
);
494 smb_fdata ( ndo
, words
+ 1 , f1
, maxwords
, unicodestr
);
496 bcc
= GET_LE_U_2 ( data
);
497 ND_PRINT ( "smb_bcc=%u \n " , bcc
);
500 smb_fdata ( ndo
, data
+ 2 , f2
, ND_MIN ( data
+ 2 + GET_LE_U_2 ( data
),
501 maxbuf
), unicodestr
);
503 smb_data_print ( ndo
, data
+ 2 ,
504 ND_MIN ( GET_LE_U_2 ( data
), ND_BYTES_BETWEEN ( data
+ 2 , maxbuf
)));
509 static const struct smbfns smb_fns
[] = {
510 { - 1 , "SMBunknown" , 0 , DEFDESCRIPT
},
512 { SMBtcon
, "SMBtcon" , 0 ,
513 { NULL
, "Path=[Z] \n Password=[Z] \n Device=[Z] \n " ,
514 "MaxXmit=[u] \n TreeId=[u] \n " , NULL
,
517 { SMBtdis
, "SMBtdis" , 0 , DEFDESCRIPT
},
518 { SMBexit
, "SMBexit" , 0 , DEFDESCRIPT
},
519 { SMBioctl
, "SMBioctl" , 0 , DEFDESCRIPT
},
521 { SMBecho
, "SMBecho" , 0 ,
522 { "ReverbCount=[u] \n " , NULL
,
523 "SequenceNum=[u] \n " , NULL
,
526 { SMBulogoffX
, "SMBulogoffX" , FLG_CHAIN
, DEFDESCRIPT
},
528 { SMBgetatr
, "SMBgetatr" , 0 ,
529 { NULL
, "Path=[Z] \n " ,
530 "Attribute=[A] \n Time=[T2]Size=[U] \n Res=([w,w,w,w,w]) \n " , NULL
,
533 { SMBsetatr
, "SMBsetatr" , 0 ,
534 { "Attribute=[A] \n Time=[T2]Res=([w,w,w,w,w]) \n " , "Path=[Z] \n " ,
535 NULL
, NULL
, NULL
} },
537 { SMBchkpth
, "SMBchkpth" , 0 ,
538 { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
540 { SMBsearch
, "SMBsearch" , 0 ,
541 { "Count=[u] \n Attrib=[A] \n " ,
542 "Path=[Z] \n BlkType=[B] \n BlkLen=[u] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n Res2=[W] \n " ,
544 "BlkType=[B] \n BlkLen=[u] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[U] \n Name=[s13] \n " ,
547 { SMBopen
, "SMBopen" , 0 ,
548 { "Mode=[w] \n Attribute=[A] \n " , "Path=[Z] \n " ,
549 "Handle=[u] \n OAttrib=[A] \n Time=[T2]Size=[U] \n Access=[w] \n " ,
552 { SMBcreate
, "SMBcreate" , 0 ,
553 { "Attrib=[A] \n Time=[T2]" , "Path=[Z] \n " , "Handle=[u] \n " , NULL
, NULL
} },
555 { SMBmknew
, "SMBmknew" , 0 ,
556 { "Attrib=[A] \n Time=[T2]" , "Path=[Z] \n " , "Handle=[u] \n " , NULL
, NULL
} },
558 { SMBunlink
, "SMBunlink" , 0 ,
559 { "Attrib=[A] \n " , "Path=[Z] \n " , NULL
, NULL
, NULL
} },
561 { SMBread
, "SMBread" , 0 ,
562 { "Handle=[u] \n ByteCount=[u] \n Offset=[D] \n CountLeft=[u] \n " , NULL
,
563 "Count=[u] \n Res=([w,w,w,w]) \n " , NULL
, NULL
} },
565 { SMBwrite
, "SMBwrite" , 0 ,
566 { "Handle=[u] \n ByteCount=[u] \n Offset=[D] \n CountLeft=[u] \n " , NULL
,
567 "Count=[u] \n " , NULL
, NULL
} },
569 { SMBclose
, "SMBclose" , 0 ,
570 { "Handle=[u] \n Time=[T2]" , NULL
, NULL
, NULL
, NULL
} },
572 { SMBmkdir
, "SMBmkdir" , 0 ,
573 { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
575 { SMBrmdir
, "SMBrmdir" , 0 ,
576 { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
578 { SMBdskattr
, "SMBdskattr" , 0 ,
580 "TotalUnits=[u] \n BlocksPerUnit=[u] \n BlockSize=[u] \n FreeUnits=[u] \n Media=[w] \n " ,
584 { "Attrib=[A] \n " , "OldPath=[Z] \n NewPath=[Z] \n " , NULL
, NULL
, NULL
} },
587 * this is a Pathworks specific call, allowing the
588 * changing of the root path
590 { pSETDIR
, "SMBsetdir" , 0 , { NULL
, "Path=[Z] \n " , NULL
, NULL
, NULL
} },
592 { SMBlseek
, "SMBlseek" , 0 ,
593 { "Handle=[u] \n Mode=[w] \n Offset=[D] \n " , "Offset=[D] \n " , NULL
, NULL
, NULL
} },
595 { SMBflush
, "SMBflush" , 0 , { "Handle=[u] \n " , NULL
, NULL
, NULL
, NULL
} },
597 { SMBsplopen
, "SMBsplopen" , 0 ,
598 { "SetupLen=[u] \n Mode=[w] \n " , "Ident=[Z] \n " , "Handle=[u] \n " ,
601 { SMBsplclose
, "SMBsplclose" , 0 ,
602 { "Handle=[u] \n " , NULL
, NULL
, NULL
, NULL
} },
604 { SMBsplretq
, "SMBsplretq" , 0 ,
605 { "MaxCount=[u] \n StartIndex=[u] \n " , NULL
,
606 "Count=[u] \n Index=[u] \n " ,
607 "*Time=[T2]Status=[B] \n JobID=[u] \n Size=[U] \n Res=[B]Name=[s16] \n " ,
610 { SMBsplwr
, "SMBsplwr" , 0 ,
611 { "Handle=[u] \n " , NULL
, NULL
, NULL
, NULL
} },
613 { SMBlock
, "SMBlock" , 0 ,
614 { "Handle=[u] \n Count=[U] \n Offset=[D] \n " , NULL
, NULL
, NULL
, NULL
} },
616 { SMBunlock
, "SMBunlock" , 0 ,
617 { "Handle=[u] \n Count=[U] \n Offset=[D] \n " , NULL
, NULL
, NULL
, NULL
} },
619 /* CORE+ PROTOCOL FOLLOWS */
621 { SMBreadbraw
, "SMBreadbraw" , 0 ,
622 { "Handle=[u] \n Offset=[D] \n MaxCount=[u] \n MinCount=[u] \n TimeOut=[D] \n Res=[u] \n " ,
623 NULL
, NULL
, NULL
, NULL
} },
625 { SMBwritebraw
, "SMBwritebraw" , 0 ,
626 { "Handle=[u] \n TotalCount=[u] \n Res=[w] \n Offset=[D] \n TimeOut=[D] \n WMode=[w] \n Res2=[W] \n |DataSize=[u] \n DataOff=[u] \n " ,
627 NULL
, "WriteRawAck" , NULL
, NULL
} },
629 { SMBwritec
, "SMBwritec" , 0 ,
630 { NULL
, NULL
, "Count=[u] \n " , NULL
, NULL
} },
632 { SMBwriteclose
, "SMBwriteclose" , 0 ,
633 { "Handle=[u] \n Count=[u] \n Offset=[D] \n Time=[T2]Res=([w,w,w,w,w,w])" ,
634 NULL
, "Count=[u] \n " , NULL
, NULL
} },
636 { SMBlockread
, "SMBlockread" , 0 ,
637 { "Handle=[u] \n ByteCount=[u] \n Offset=[D] \n CountLeft=[u] \n " , NULL
,
638 "Count=[u] \n Res=([w,w,w,w]) \n " , NULL
, NULL
} },
640 { SMBwriteunlock
, "SMBwriteunlock" , 0 ,
641 { "Handle=[u] \n ByteCount=[u] \n Offset=[D] \n CountLeft=[u] \n " , NULL
,
642 "Count=[u] \n " , NULL
, NULL
} },
644 { SMBreadBmpx
, "SMBreadBmpx" , 0 ,
645 { "Handle=[u] \n Offset=[D] \n MaxCount=[u] \n MinCount=[u] \n TimeOut=[D] \n Res=[w] \n " ,
647 "Offset=[D] \n TotCount=[u] \n Remaining=[u] \n Res=([w,w]) \n DataSize=[u] \n DataOff=[u] \n " ,
650 { SMBwriteBmpx
, "SMBwriteBmpx" , 0 ,
651 { "Handle=[u] \n TotCount=[u] \n Res=[w] \n Offset=[D] \n TimeOut=[D] \n WMode=[w] \n Res2=[W] \n DataSize=[u] \n DataOff=[u] \n " , NULL
,
652 "Remaining=[u] \n " , NULL
, NULL
} },
654 { SMBwriteBs
, "SMBwriteBs" , 0 ,
655 { "Handle=[u] \n TotCount=[u] \n Offset=[D] \n Res=[W] \n DataSize=[u] \n DataOff=[u] \n " ,
656 NULL
, "Count=[u] \n " , NULL
, NULL
} },
658 { SMBsetattrE
, "SMBsetattrE" , 0 ,
659 { "Handle=[u] \n CreationTime=[T2]AccessTime=[T2]ModifyTime=[T2]" , NULL
,
660 NULL
, NULL
, NULL
} },
662 { SMBgetattrE
, "SMBgetattrE" , 0 ,
663 { "Handle=[u] \n " , NULL
,
664 "CreationTime=[T2]AccessTime=[T2]ModifyTime=[T2]Size=[U] \n AllocSize=[U] \n Attribute=[A] \n " ,
667 { SMBtranss
, "SMBtranss" , 0 , DEFDESCRIPT
},
668 { SMBioctls
, "SMBioctls" , 0 , DEFDESCRIPT
},
670 { SMBcopy
, "SMBcopy" , 0 ,
671 { "TreeID2=[u] \n OFun=[w] \n Flags=[w] \n " , "Path=[S] \n NewPath=[S] \n " ,
672 "CopyCount=[u] \n " , "|ErrStr=[S] \n " , NULL
} },
674 { SMBmove
, "SMBmove" , 0 ,
675 { "TreeID2=[u] \n OFun=[w] \n Flags=[w] \n " , "Path=[S] \n NewPath=[S] \n " ,
676 "MoveCount=[u] \n " , "|ErrStr=[S] \n " , NULL
} },
678 { SMBopenX
, "SMBopenX" , FLG_CHAIN
,
679 { "Com2=[w] \n Off2=[u] \n Flags=[w] \n Mode=[w] \n SearchAttrib=[A] \n Attrib=[A] \n Time=[T2]OFun=[w] \n Size=[U] \n TimeOut=[D] \n Res=[W] \n " ,
681 "Com2=[w] \n Off2=[u] \n Handle=[u] \n Attrib=[A] \n Time=[T2]Size=[U] \n Access=[w] \n Type=[w] \n State=[w] \n Action=[w] \n FileID=[W] \n Res=[w] \n " ,
684 { SMBreadX
, "SMBreadX" , FLG_CHAIN
,
685 { "Com2=[w] \n Off2=[u] \n Handle=[u] \n Offset=[D] \n MaxCount=[u] \n MinCount=[u] \n TimeOut=[D] \n CountLeft=[u] \n " ,
687 "Com2=[w] \n Off2=[u] \n Remaining=[u] \n Res=[W] \n DataSize=[u] \n DataOff=[u] \n Res=([w,w,w,w]) \n " ,
690 { SMBwriteX
, "SMBwriteX" , FLG_CHAIN
,
691 { "Com2=[w] \n Off2=[u] \n Handle=[u] \n Offset=[D] \n TimeOut=[D] \n WMode=[w] \n CountLeft=[u] \n Res=[w] \n DataSize=[u] \n DataOff=[u] \n " ,
693 "Com2=[w] \n Off2=[u] \n Count=[u] \n Remaining=[u] \n Res=[W] \n " ,
696 { SMBffirst
, "SMBffirst" , 0 ,
697 { "Count=[u] \n Attrib=[A] \n " ,
698 "Path=[Z] \n BlkType=[B] \n BlkLen=[u] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n " ,
700 "BlkType=[B] \n BlkLen=[u] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[U] \n Name=[s13] \n " ,
703 { SMBfunique
, "SMBfunique" , 0 ,
704 { "Count=[u] \n Attrib=[A] \n " ,
705 "Path=[Z] \n BlkType=[B] \n BlkLen=[u] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n " ,
707 "BlkType=[B] \n BlkLen=[u] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[U] \n Name=[s13] \n " ,
710 { SMBfclose
, "SMBfclose" , 0 ,
711 { "Count=[u] \n Attrib=[A] \n " ,
712 "Path=[Z] \n BlkType=[B] \n BlkLen=[u] \n |Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n " ,
714 "BlkType=[B] \n BlkLen=[u] \n * \n Res1=[B] \n Mask=[s11] \n Srv1=[B] \n DirIndex=[u] \n Srv2=[w] \n Res2=[W] \n Attrib=[a] \n Time=[T1]Size=[U] \n Name=[s13] \n " ,
717 { SMBfindnclose
, "SMBfindnclose" , 0 ,
718 { "Handle=[u] \n " , NULL
, NULL
, NULL
, NULL
} },
720 { SMBfindclose
, "SMBfindclose" , 0 ,
721 { "Handle=[u] \n " , NULL
, NULL
, NULL
, NULL
} },
723 { SMBsends
, "SMBsends" , 0 ,
724 { NULL
, "Source=[Z] \n Dest=[Z] \n " , NULL
, NULL
, NULL
} },
726 { SMBsendstrt
, "SMBsendstrt" , 0 ,
727 { NULL
, "Source=[Z] \n Dest=[Z] \n " , "GroupID=[u] \n " , NULL
, NULL
} },
729 { SMBsendend
, "SMBsendend" , 0 ,
730 { "GroupID=[u] \n " , NULL
, NULL
, NULL
, NULL
} },
732 { SMBsendtxt
, "SMBsendtxt" , 0 ,
733 { "GroupID=[u] \n " , NULL
, NULL
, NULL
, NULL
} },
735 { SMBsendb
, "SMBsendb" , 0 ,
736 { NULL
, "Source=[Z] \n Dest=[Z] \n " , NULL
, NULL
, NULL
} },
738 { SMBfwdname
, "SMBfwdname" , 0 , DEFDESCRIPT
},
739 { SMBcancelf
, "SMBcancelf" , 0 , DEFDESCRIPT
},
740 { SMBgetmac
, "SMBgetmac" , 0 , DEFDESCRIPT
},
742 { SMBnegprot
, "SMBnegprot" , 0 ,
743 { NULL
, NULL
, NULL
, NULL
, print_negprot
} },
745 { SMBsesssetupX
, "SMBsesssetupX" , FLG_CHAIN
,
746 { NULL
, NULL
, NULL
, NULL
, print_sesssetup
} },
748 { SMBtconX
, "SMBtconX" , FLG_CHAIN
,
749 { "Com2=[w] \n Off2=[u] \n Flags=[w] \n PassLen=[u] \n Passwd&Path&Device= \n " ,
750 NULL
, "Com2=[w] \n Off2=[u] \n " , "ServiceType=[R] \n " , NULL
} },
752 { SMBlockingX
, "SMBlockingX" , FLG_CHAIN
,
753 { NULL
, NULL
, NULL
, NULL
, print_lockingandx
} },
755 { SMBtrans2
, "SMBtrans2" , 0 , { NULL
, NULL
, NULL
, NULL
, print_trans2
} },
757 { SMBtranss2
, "SMBtranss2" , 0 , DEFDESCRIPT
},
758 { SMBctemp
, "SMBctemp" , 0 , DEFDESCRIPT
},
759 { SMBreadBs
, "SMBreadBs" , 0 , DEFDESCRIPT
},
760 { SMBtrans
, "SMBtrans" , 0 , { NULL
, NULL
, NULL
, NULL
, print_trans
} },
762 { SMBnttrans
, "SMBnttrans" , 0 , DEFDESCRIPT
},
763 { SMBnttranss
, "SMBnttranss" , 0 , DEFDESCRIPT
},
765 { SMBntcreateX
, "SMBntcreateX" , FLG_CHAIN
,
766 { "Com2=[w] \n Off2=[u] \n Res=[b] \n NameLen=[lu] \n Flags=[W] \n RootDirectoryFid=[U] \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 " ,
768 "Com2=[w] \n Off2=[u] \n OplockLevel=[b] \n Fid=[u] \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 " ,
771 { SMBntcancel
, "SMBntcancel" , 0 , DEFDESCRIPT
},
773 { - 1 , NULL
, 0 , DEFDESCRIPT
}
778 * print a SMB message
781 print_smb ( netdissect_options
* ndo
,
782 const u_char
* buf
, const u_char
* maxbuf
)
788 const u_char
* words
, * maxwords
, * data
;
789 const struct smbfns
* fn
;
790 const char * fmt_smbheader
=
791 "[P4]SMB Command = [B] \n Error class = [BP1] \n Error code = [u] \n Flags1 = [B] \n Flags2 = [B][P13] \n Tree ID = [u] \n Proc ID = [u] \n UID = [u] \n MID = [u] \n Word Count = [b] \n " ;
794 ndo
-> ndo_protocol
= "smb" ;
796 request
= ( GET_U_1 ( buf
+ 9 ) & 0x80 ) ? 0 : 1 ;
799 command
= GET_U_1 ( buf
+ 4 );
801 fn
= smbfind ( command
, smb_fns
);
803 if ( ndo
-> ndo_vflag
> 1 )
806 ND_PRINT ( "SMB PACKET: %s (%s)" , fn
-> name
, request
? "REQUEST" : "REPLY" );
808 if ( ndo
-> ndo_vflag
< 2 )
812 flags2
= GET_LE_U_2 ( buf
+ 10 );
813 unicodestr
= flags2
& 0x8000 ;
814 nterrcodes
= flags2
& 0x4000 ;
816 /* print out the header */
817 smb_fdata ( ndo
, buf
, fmt_smbheader
, buf
+ 33 , unicodestr
);
820 nterror
= GET_LE_U_4 ( buf
+ 5 );
822 ND_PRINT ( "NTError = %s \n " , nt_errstr ( nterror
));
824 if ( GET_U_1 ( buf
+ 5 ))
825 ND_PRINT ( "SMBError = %s \n " , smb_errstr ( GET_U_1 ( buf
+ 5 ),
826 GET_LE_U_2 ( buf
+ 7 )));
837 words
= buf
+ smboffset
;
838 wct
= GET_U_1 ( words
);
839 data
= words
+ 1 + wct
* 2 ;
840 maxwords
= ND_MIN ( data
, maxbuf
);
843 f1
= fn
-> descript
. req_f1
;
844 f2
= fn
-> descript
. req_f2
;
846 f1
= fn
-> descript
. rep_f1
;
847 f2
= fn
-> descript
. rep_f2
;
852 (* fn
-> descript
. fn
)( ndo
, words
, data
, buf
, maxbuf
);
856 smb_fdata ( ndo
, words
+ 1 , f1
, words
+ 1 + wct
* 2 , unicodestr
);
861 for ( i
= 0 ; words
+ 1 + 2 * i
< maxwords
; i
++) {
862 v
= GET_LE_U_2 ( words
+ 1 + 2 * i
);
863 ND_PRINT ( "smb_vwv[%u]=%u (0x%X) \n " , i
, v
, v
);
868 bcc
= GET_LE_U_2 ( data
);
869 ND_PRINT ( "smb_bcc=%u \n " , bcc
);
872 smb_fdata ( ndo
, data
+ 2 , f2
, data
+ 2 + bcc
, unicodestr
);
875 ND_PRINT ( "smb_buf[]= \n " );
876 smb_data_print ( ndo
, data
+ 2 ,
877 ND_MIN ( bcc
, ND_BYTES_BETWEEN ( data
+ 2 , maxbuf
)));
882 if (( fn
-> flags
& FLG_CHAIN
) == 0 )
886 command
= GET_U_1 ( words
+ 1 );
889 newsmboffset
= GET_LE_U_2 ( words
+ 3 );
891 fn
= smbfind ( command
, smb_fns
);
893 ND_PRINT ( " \n SMB PACKET: %s (%s) (CHAINED) \n " ,
894 fn
-> name
, request
? "REQUEST" : "REPLY" );
895 if ( newsmboffset
<= smboffset
) {
896 ND_PRINT ( "Bad andX offset: %u <= %u \n " , newsmboffset
, smboffset
);
899 smboffset
= newsmboffset
;
905 * print a NBT packet received across tcp on port 139
908 nbt_tcp_print ( netdissect_options
* ndo
,
909 const u_char
* data
, u_int length
)
914 const u_char
* maxbuf
;
916 ndo
-> ndo_protocol
= "nbt_tcp" ;
919 if ( ndo
-> ndo_snapend
< data
)
921 caplen
= ND_BYTES_AVAILABLE_AFTER ( data
);
924 maxbuf
= data
+ caplen
;
925 type
= GET_U_1 ( data
);
926 nbt_len
= GET_BE_U_2 ( data
+ 2 );
932 if ( ndo
-> ndo_vflag
< 2 ) {
933 ND_PRINT ( " NBT Session Packet: " );
936 ND_PRINT ( "Session Message" );
940 ND_PRINT ( "Session Request" );
944 ND_PRINT ( "Session Granted" );
957 ecode
= GET_U_1 ( data
+ 4 );
959 ND_PRINT ( "Session Reject, " );
962 ND_PRINT ( "Not listening on called name" );
965 ND_PRINT ( "Not listening for calling name" );
968 ND_PRINT ( "Called name not present" );
971 ND_PRINT ( "Called name present, but insufficient resources" );
974 ND_PRINT ( "Unspecified error 0x%X" , ecode
);
981 ND_PRINT ( "Session Keepalive" );
985 data
= smb_fdata ( ndo
, data
, "Unknown packet type [rB]" , maxbuf
, 0 );
989 ND_PRINT ( " \n >>> NBT Session Packet \n " );
992 data
= smb_fdata ( ndo
, data
, "[P1]NBT Session Message \n Flags=[B] \n Length=[ru] \n " ,
996 if ( nbt_len
>= 4 && caplen
>= 4 && memcmp ( data
, " \377 SMB" , 4 ) == 0 ) {
997 if ( nbt_len
> caplen
) {
998 if ( nbt_len
> length
)
999 ND_PRINT ( "WARNING: Packet is continued in later TCP segments \n " );
1001 ND_PRINT ( "WARNING: Short packet. Try increasing the snap length by %u \n " ,
1004 print_smb ( ndo
, data
, maxbuf
> data
+ nbt_len
? data
+ nbt_len
: maxbuf
);
1006 ND_PRINT ( "Session packet:(raw data or continuation?) \n " );
1010 data
= smb_fdata ( ndo
, data
,
1011 "[P1]NBT Session Request \n Flags=[B] \n Length=[ru] \n Destination=[n1] \n Source=[n1] \n " ,
1016 data
= smb_fdata ( ndo
, data
, "[P1]NBT Session Granted \n Flags=[B] \n Length=[ru] \n " , maxbuf
, 0 );
1021 const u_char
* origdata
;
1025 data
= smb_fdata ( ndo
, data
, "[P1]NBT SessionReject \n Flags=[B] \n Length=[ru] \n Reason=[B] \n " ,
1029 if ( nbt_len
>= 1 && caplen
>= 1 ) {
1030 ecode
= GET_U_1 ( origdata
+ 4 );
1033 ND_PRINT ( "Not listening on called name \n " );
1036 ND_PRINT ( "Not listening for calling name \n " );
1039 ND_PRINT ( "Called name not present \n " );
1042 ND_PRINT ( "Called name present, but insufficient resources \n " );
1045 ND_PRINT ( "Unspecified error 0x%X \n " , ecode
);
1053 data
= smb_fdata ( ndo
, data
, "[P1]NBT Session Keepalive \n Flags=[B] \n Length=[ru] \n " , maxbuf
, 0 );
1057 data
= smb_fdata ( ndo
, data
, "NBT - Unknown packet type \n Type=[B] \n " , maxbuf
, 0 );
1063 nd_print_trunc ( ndo
);
1066 static const struct tok opcode_str
[] = {
1068 { 5 , "REGISTRATION" },
1071 { 8 , "REFRESH(8)" },
1073 { 15 , "MULTIHOMED REGISTRATION" },
1078 * print a NBT packet received across udp on port 137
1081 nbt_udp137_print ( netdissect_options
* ndo
,
1082 const u_char
* data
, u_int length
)
1084 const u_char
* maxbuf
= data
+ length
;
1085 u_int name_trn_id
, response
, opcode
, nm_flags
, rcode
;
1086 u_int qdcount
, ancount
, nscount
, arcount
;
1090 ndo
-> ndo_protocol
= "nbt_udp137" ;
1091 name_trn_id
= GET_BE_U_2 ( data
);
1092 response
= ( GET_U_1 ( data
+ 2 ) >> 7 );
1093 opcode
= ( GET_U_1 ( data
+ 2 ) >> 3 ) & 0xF ;
1094 nm_flags
= (( GET_U_1 ( data
+ 2 ) & 0x7 ) << 4 ) + ( GET_U_1 ( data
+ 3 ) >> 4 );
1095 rcode
= GET_U_1 ( data
+ 3 ) & 0xF ;
1096 qdcount
= GET_BE_U_2 ( data
+ 4 );
1097 ancount
= GET_BE_U_2 ( data
+ 6 );
1098 nscount
= GET_BE_U_2 ( data
+ 8 );
1099 arcount
= GET_BE_U_2 ( data
+ 10 );
1105 if ( ndo
-> ndo_vflag
> 1 )
1108 ND_PRINT ( "NBT UDP PACKET(137): %s" , tok2str ( opcode_str
, "OPUNKNOWN" , opcode
));
1110 ND_PRINT ( "; %s" , rcode
? "NEGATIVE" : "POSITIVE" );
1112 ND_PRINT ( "; %s; %s" , response
? "RESPONSE" : "REQUEST" ,
1113 ( nm_flags
& 1 ) ? "BROADCAST" : "UNICAST" );
1115 if ( ndo
-> ndo_vflag
< 2 )
1118 ND_PRINT ( " \n TrnID=0x%X \n OpCode=%u \n NmFlags=0x%X \n Rcode=%u \n QueryCount=%u \n AnswerCount=%u \n AuthorityCount=%u \n AddressRecCount=%u \n " ,
1119 name_trn_id
, opcode
, nm_flags
, rcode
, qdcount
, ancount
, nscount
,
1124 total
= ancount
+ nscount
+ arcount
;
1126 if ( qdcount
> 100 || total
> 100 ) {
1127 ND_PRINT ( "Corrupt packet?? \n " );
1132 ND_PRINT ( "QuestionRecords: \n " );
1133 for ( i
= 0 ; i
< qdcount
; i
++) {
1134 p
= smb_fdata ( ndo
, p
,
1135 "|Name=[n1] \n QuestionType=[rw] \n QuestionClass=[rw] \n #" ,
1143 ND_PRINT ( " \n ResourceRecords: \n " );
1144 for ( i
= 0 ; i
< total
; i
++) {
1148 p
= smb_fdata ( ndo
, p
, "Name=[n1] \n #" , maxbuf
, 0 );
1151 restype
= GET_BE_U_2 ( p
);
1152 p
= smb_fdata ( ndo
, p
, "ResType=[rw] \n ResClass=[rw] \n TTL=[rU] \n " , p
+ 8 , 0 );
1155 rdlen
= GET_BE_U_2 ( p
);
1156 ND_PRINT ( "ResourceLength=%u \n ResourceData= \n " , rdlen
);
1159 p
= smb_fdata ( ndo
, p
, "AddrType=[rw] \n Address=[b.b.b.b] \n " , p
+ rdlen
, 0 );
1163 if ( restype
== 0x21 ) {
1166 numnames
= GET_U_1 ( p
);
1167 p
= smb_fdata ( ndo
, p
, "NumNames=[B] \n " , p
+ 1 , 0 );
1171 p
= smb_fdata ( ndo
, p
, "Name=[n2] \t #" , maxbuf
, 0 );
1177 if ( GET_U_1 ( p
) & 0x80 )
1178 ND_PRINT ( "<GROUP> " );
1179 switch ( GET_U_1 ( p
) & 0x60 ) {
1180 case 0x00 : ND_PRINT ( "B " ); break ;
1181 case 0x20 : ND_PRINT ( "P " ); break ;
1182 case 0x40 : ND_PRINT ( "M " ); break ;
1183 case 0x60 : ND_PRINT ( "_ " ); break ;
1185 if ( GET_U_1 ( p
) & 0x10 )
1186 ND_PRINT ( "<DEREGISTERING> " );
1187 if ( GET_U_1 ( p
) & 0x08 )
1188 ND_PRINT ( "<CONFLICT> " );
1189 if ( GET_U_1 ( p
) & 0x04 )
1190 ND_PRINT ( "<ACTIVE> " );
1191 if ( GET_U_1 ( p
) & 0x02 )
1192 ND_PRINT ( "<PERMANENT> " );
1200 smb_data_print ( ndo
, p
,
1201 ND_MIN ( rdlen
, length
- ND_BYTES_BETWEEN ( data
, p
)));
1209 smb_fdata ( ndo
, p
, "AdditionalData: \n " , maxbuf
, 0 );
1214 nd_print_trunc ( ndo
);
1218 * Print an SMB-over-TCP packet received across tcp on port 445
1221 smb_tcp_print ( netdissect_options
* ndo
,
1222 const u_char
* data
, u_int length
)
1226 const u_char
* maxbuf
;
1228 ndo
-> ndo_protocol
= "smb_tcp" ;
1231 if ( ndo
-> ndo_snapend
< data
)
1233 caplen
= ND_BYTES_AVAILABLE_AFTER ( data
);
1236 maxbuf
= data
+ caplen
;
1237 smb_len
= GET_BE_U_3 ( data
+ 1 );
1244 if ( smb_len
>= 4 && caplen
>= 4 && memcmp ( data
, " \377 SMB" , 4 ) == 0 ) {
1245 if ( smb_len
> caplen
) {
1246 if ( smb_len
> length
)
1247 ND_PRINT ( " WARNING: Packet is continued in later TCP segments \n " );
1249 ND_PRINT ( " WARNING: Short packet. Try increasing the snap length by %u \n " ,
1253 print_smb ( ndo
, data
, maxbuf
> data
+ smb_len
? data
+ smb_len
: maxbuf
);
1255 ND_PRINT ( " SMB-over-TCP packet:(raw data or continuation?) \n " );
1258 nd_print_trunc ( ndo
);
1262 * print a NBT packet received across udp on port 138
1265 nbt_udp138_print ( netdissect_options
* ndo
,
1266 const u_char
* data
, u_int length
)
1268 const u_char
* maxbuf
= data
+ length
;
1270 ndo
-> ndo_protocol
= "nbt_udp138" ;
1271 if ( maxbuf
> ndo
-> ndo_snapend
)
1272 maxbuf
= ndo
-> ndo_snapend
;
1277 if ( ndo
-> ndo_vflag
< 2 ) {
1278 ND_PRINT ( "NBT UDP PACKET(138)" );
1282 data
= smb_fdata ( ndo
, data
,
1283 " \n >>> NBT UDP PACKET(138) Res=[rw] ID=[rw] IP=[b.b.b.b] Port=[ru] Length=[ru] Res2=[rw] \n SourceName=[n1] \n DestName=[n1] \n #" ,
1287 /* If there isn't enough data for "\377SMB", don't check for it. */
1288 if (( data
+ 3 ) >= maxbuf
)
1291 if ( memcmp ( data
, " \377 SMB" , 4 ) == 0 )
1292 print_smb ( ndo
, data
, maxbuf
);
1300 print netbeui frames
1302 static struct nbf_strings
{
1304 const char * nonverbose
;
1305 const char * verbose
;
1306 } nbf_strings
[ 0x20 ] = {
1307 { "Add Group Name Query" , ", [P23]Name to add=[n2]#" ,
1308 "[P5]ResponseCorrelator=[w] \n [P16]Name to add=[n2] \n " },
1309 { "Add Name Query" , ", [P23]Name to add=[n2]#" ,
1310 "[P5]ResponseCorrelator=[w] \n [P16]Name to add=[n2] \n " },
1311 { "Name In Conflict" , NULL
, NULL
},
1312 { "Status Query" , NULL
, NULL
},
1313 { NULL
, NULL
, NULL
}, /* not used */
1314 { NULL
, NULL
, NULL
}, /* not used */
1315 { NULL
, NULL
, NULL
}, /* not used */
1316 { "Terminate Trace" , NULL
, NULL
},
1318 "[P7]Destination=[n2] \n Source=[n2] \n " },
1319 { "Broadcast Datagram" , NULL
,
1320 "[P7]Destination=[n2] \n Source=[n2] \n " },
1321 { "Name Query" , ", [P7]Name=[n2]#" ,
1322 "[P1]SessionNumber=[B] \n NameType=[B][P2] \n ResponseCorrelator=[w] \n Name=[n2] \n Name of sender=[n2] \n " },
1323 { NULL
, NULL
, NULL
}, /* not used */
1324 { NULL
, NULL
, NULL
}, /* not used */
1325 { "Add Name Response" , ", [P1]GroupName=[w] [P4]Destination=[n2] Source=[n2]#" ,
1326 "AddNameInProcess=[B] \n GroupName=[w] \n TransmitCorrelator=[w][P2] \n Destination=[n2] \n Source=[n2] \n " },
1327 { "Name Recognized" , NULL
,
1328 "[P1]Data2=[w] \n TransmitCorrelator=[w] \n ResponseCorelator=[w] \n Destination=[n2] \n Source=[n2] \n " },
1329 { "Status Response" , NULL
, NULL
},
1330 { NULL
, NULL
, NULL
}, /* not used */
1331 { NULL
, NULL
, NULL
}, /* not used */
1332 { NULL
, NULL
, NULL
}, /* not used */
1333 { "Terminate Trace" , NULL
, NULL
},
1335 "[P3]TransmitCorrelator=[w][P2] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1336 { "Data First/Middle" , NULL
,
1337 "Flags=[{RECEIVE_CONTINUE|NO_ACK||PIGGYBACK_ACK_INCLUDED|}] \n ResyncIndicator=[w][P2] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1338 { "Data Only/Last" , NULL
,
1339 "Flags=[{|NO_ACK|PIGGYBACK_ACK_ALLOWED|PIGGYBACK_ACK_INCLUDED|}] \n ResyncIndicator=[w][P2] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1340 { "Session Confirm" , NULL
,
1341 "Data1=[B] \n Data2=[w] \n TransmitCorrelator=[w] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1342 { "Session End" , NULL
,
1343 "[P1]Data2=[w][P4] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1344 { "Session Initialize" , NULL
,
1345 "Data1=[B] \n Data2=[w] \n TransmitCorrelator=[w] \n ResponseCorelator=[w] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1346 { "No Receive" , NULL
,
1347 "Flags=[{|SEND_NO_ACK}] \n DataBytesAccepted=[b][P4] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1348 { "Receive Outstanding" , NULL
,
1349 "[P1]DataBytesAccepted=[b][P4] \n RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1350 { "Receive Continue" , NULL
,
1351 "[P2]TransmitCorrelator=[w] \n [P2]RemoteSessionNumber=[B] \n LocalSessionNumber=[B] \n " },
1352 { NULL
, NULL
, NULL
}, /* not used */
1353 { NULL
, NULL
, NULL
}, /* not used */
1354 { "Session Alive" , NULL
, NULL
}
1358 netbeui_print ( netdissect_options
* ndo
,
1359 u_short control
, const u_char
* data
, u_int length
)
1361 const u_char
* maxbuf
= data
+ length
;
1364 const u_char
* data2
;
1365 int is_truncated
= 0 ;
1367 ndo
-> ndo_protocol
= "netbeui" ;
1368 if ( maxbuf
> ndo
-> ndo_snapend
)
1369 maxbuf
= ndo
-> ndo_snapend
;
1370 len
= GET_LE_U_2 ( data
);
1371 command
= GET_U_1 ( data
+ 4 );
1373 if ( data2
>= maxbuf
) {
1380 if ( ndo
-> ndo_vflag
< 2 ) {
1381 ND_PRINT ( "NBF Packet: " );
1382 data
= smb_fdata ( ndo
, data
, "[P5]#" , maxbuf
, 0 );
1384 ND_PRINT ( " \n >>> NBF Packet \n Type=0x%X " , control
);
1385 data
= smb_fdata ( ndo
, data
, "Length=[u] Signature=[w] Command=[B] \n #" , maxbuf
, 0 );
1390 if ( command
> 0x1f || nbf_strings
[ command
]. name
== NULL
) {
1391 if ( ndo
-> ndo_vflag
< 2 )
1392 data
= smb_fdata ( ndo
, data
, "Unknown NBF Command#" , data2
, 0 );
1394 data
= smb_fdata ( ndo
, data
, "Unknown NBF Command \n " , data2
, 0 );
1396 if ( ndo
-> ndo_vflag
< 2 ) {
1397 ND_PRINT ( "%s" , nbf_strings
[ command
]. name
);
1398 if ( nbf_strings
[ command
]. nonverbose
!= NULL
)
1399 data
= smb_fdata ( ndo
, data
, nbf_strings
[ command
]. nonverbose
, data2
, 0 );
1401 ND_PRINT ( "%s: \n " , nbf_strings
[ command
]. name
);
1402 if ( nbf_strings
[ command
]. verbose
!= NULL
)
1403 data
= smb_fdata ( ndo
, data
, nbf_strings
[ command
]. verbose
, data2
, 0 );
1409 if ( ndo
-> ndo_vflag
< 2 )
1416 /* data2 was past the end of the buffer */
1420 /* If this isn't a command that would contain an SMB message, quit. */
1421 if ( command
!= 0x08 && command
!= 0x09 && command
!= 0x15 &&
1425 /* If there isn't enough data for "\377SMB", don't look for it. */
1426 if (( data2
+ 3 ) >= maxbuf
)
1429 if ( memcmp ( data2
, " \377 SMB" , 4 ) == 0 )
1430 print_smb ( ndo
, data2
, maxbuf
);
1433 for ( i
= 0 ; i
< 128 ; i
++) {
1434 if (( data2
+ i
+ 3 ) >= maxbuf
)
1436 if ( memcmp ( data2
+ i
, " \377 SMB" , 4 ) == 0 ) {
1437 ND_PRINT ( "found SMB packet at %u \n " , i
);
1438 print_smb ( ndo
, data2
+ i
, maxbuf
);
1450 * print IPX-Netbios frames
1453 ipx_netbios_print ( netdissect_options
* ndo
,
1454 const u_char
* data
, u_int length
)
1457 * this is a hack till I work out how to parse the rest of the
1458 * NetBIOS-over-IPX stuff
1461 const u_char
* maxbuf
;
1463 ndo
-> ndo_protocol
= "ipx_netbios" ;
1464 maxbuf
= data
+ length
;
1465 /* Don't go past the end of the captured data in the packet. */
1466 if ( maxbuf
> ndo
-> ndo_snapend
)
1467 maxbuf
= ndo
-> ndo_snapend
;
1469 for ( i
= 0 ; i
< 128 ; i
++) {
1470 if (( data
+ i
+ 4 ) > maxbuf
)
1472 if ( memcmp ( data
+ i
, " \377 SMB" , 4 ) == 0 ) {
1473 smb_fdata ( ndo
, data
, " \n >>> IPX transport " , data
+ i
, 0 );
1474 print_smb ( ndo
, data
+ i
, maxbuf
);
1479 smb_fdata ( ndo
, data
, " \n >>> Unknown IPX " , maxbuf
, 0 );