1c398230bSWarner Losh /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3fe267a55SPedro F. Giffuni * 4681a5bbeSBoris Popov * Copyright (c) 2000-2001 Boris Popov 5681a5bbeSBoris Popov * All rights reserved. 6681a5bbeSBoris Popov * 7681a5bbeSBoris Popov * Redistribution and use in source and binary forms, with or without 8681a5bbeSBoris Popov * modification, are permitted provided that the following conditions 9681a5bbeSBoris Popov * are met: 10681a5bbeSBoris Popov * 1. Redistributions of source code must retain the above copyright 11681a5bbeSBoris Popov * notice, this list of conditions and the following disclaimer. 12681a5bbeSBoris Popov * 2. Redistributions in binary form must reproduce the above copyright 13681a5bbeSBoris Popov * notice, this list of conditions and the following disclaimer in the 14681a5bbeSBoris Popov * documentation and/or other materials provided with the distribution. 15681a5bbeSBoris Popov * 16681a5bbeSBoris Popov * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17681a5bbeSBoris Popov * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18681a5bbeSBoris Popov * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19681a5bbeSBoris Popov * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20681a5bbeSBoris Popov * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21681a5bbeSBoris Popov * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22681a5bbeSBoris Popov * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23681a5bbeSBoris Popov * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24681a5bbeSBoris Popov * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25681a5bbeSBoris Popov * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26681a5bbeSBoris Popov * SUCH DAMAGE. 27681a5bbeSBoris Popov */ 28681a5bbeSBoris Popov #ifndef _NETSMB_NETBIOS_H_ 29681a5bbeSBoris Popov #define _NETSMB_NETBIOS_H_ 30681a5bbeSBoris Popov 31681a5bbeSBoris Popov /* 32681a5bbeSBoris Popov * make this file dirty... 33681a5bbeSBoris Popov */ 34681a5bbeSBoris Popov #ifndef _NETINET_IN_H_ 35681a5bbeSBoris Popov #include <netinet/in.h> 36681a5bbeSBoris Popov #endif 37681a5bbeSBoris Popov 38ef29b0f6SBoris Popov #define NMB_TCP_PORT 137 39ef29b0f6SBoris Popov 40681a5bbeSBoris Popov #define NBPROTO_TCPSSN 1 /* NETBIOS session over TCP */ 41681a5bbeSBoris Popov #define NBPROTO_IPXSSN 11 /* NETBIOS over IPX */ 42681a5bbeSBoris Popov 43681a5bbeSBoris Popov #define NB_NAMELEN 16 44681a5bbeSBoris Popov #define NB_ENCNAMELEN NB_NAMELEN * 2 45681a5bbeSBoris Popov #define NB_MAXLABLEN 63 46681a5bbeSBoris Popov 47681a5bbeSBoris Popov #define NB_MINSALEN (sizeof(struct sockaddr_nb)) 48681a5bbeSBoris Popov 49681a5bbeSBoris Popov /* 50681a5bbeSBoris Popov * name types 51681a5bbeSBoris Popov */ 52681a5bbeSBoris Popov #define NBT_WKSTA 0x00 530904a0d3SBoris Popov #define NBT_MESSENGER 0x03 540904a0d3SBoris Popov #define NBT_RAS_SERVER 0x06 550904a0d3SBoris Popov #define NBT_DOMAIN_MASTER_BROWSER 0x1B 560904a0d3SBoris Popov #define NBT_DOMAIN_CONTROLLER 0x1C 570904a0d3SBoris Popov #define NBT_MASTER_BROWSER 0x1D 580904a0d3SBoris Popov #define NBT_NETDDE 0x1F 59681a5bbeSBoris Popov #define NBT_SERVER 0x20 600904a0d3SBoris Popov #define NBT_RAS_CLIENT 0x21 61681a5bbeSBoris Popov 62681a5bbeSBoris Popov /* 63681a5bbeSBoris Popov * Session packet types 64681a5bbeSBoris Popov */ 65681a5bbeSBoris Popov #define NB_SSN_MESSAGE 0x0 66681a5bbeSBoris Popov #define NB_SSN_REQUEST 0x81 67681a5bbeSBoris Popov #define NB_SSN_POSRESP 0x82 68681a5bbeSBoris Popov #define NB_SSN_NEGRESP 0x83 69681a5bbeSBoris Popov #define NB_SSN_RTGRESP 0x84 70681a5bbeSBoris Popov #define NB_SSN_KEEPALIVE 0x85 71681a5bbeSBoris Popov 72681a5bbeSBoris Popov /* 73681a5bbeSBoris Popov * resolver: Opcodes 74681a5bbeSBoris Popov */ 75681a5bbeSBoris Popov #define NBNS_OPCODE_QUERY 0x00 76681a5bbeSBoris Popov #define NBNS_OPCODE_REGISTER 0x05 77681a5bbeSBoris Popov #define NBNS_OPCODE_RELEASE 0x06 78681a5bbeSBoris Popov #define NBNS_OPCODE_WACK 0x07 79681a5bbeSBoris Popov #define NBNS_OPCODE_REFRESH 0x08 80681a5bbeSBoris Popov #define NBNS_OPCODE_RESPONSE 0x10 /* or'ed with other opcodes */ 81681a5bbeSBoris Popov 82681a5bbeSBoris Popov /* 83681a5bbeSBoris Popov * resolver: NM_FLAGS 84681a5bbeSBoris Popov */ 85681a5bbeSBoris Popov #define NBNS_NMFLAG_BCAST 0x01 86681a5bbeSBoris Popov #define NBNS_NMFLAG_RA 0x08 /* recursion available */ 87681a5bbeSBoris Popov #define NBNS_NMFLAG_RD 0x10 /* recursion desired */ 88fc75194cSBoris Popov #define NBNS_NMFLAG_TC 0x20 /* truncation occurred */ 89681a5bbeSBoris Popov #define NBNS_NMFLAG_AA 0x40 /* authoritative answer */ 90681a5bbeSBoris Popov 91681a5bbeSBoris Popov /* 92681a5bbeSBoris Popov * resolver: Question types 93681a5bbeSBoris Popov */ 94681a5bbeSBoris Popov #define NBNS_QUESTION_TYPE_NB 0x0020 95681a5bbeSBoris Popov #define NBNS_QUESTION_TYPE_NBSTAT 0x0021 96681a5bbeSBoris Popov 97681a5bbeSBoris Popov /* 98681a5bbeSBoris Popov * resolver: Question class 99681a5bbeSBoris Popov */ 100681a5bbeSBoris Popov #define NBNS_QUESTION_CLASS_IN 0x0001 101681a5bbeSBoris Popov 102681a5bbeSBoris Popov /* 103681a5bbeSBoris Popov * resolver: Limits 104681a5bbeSBoris Popov */ 105681a5bbeSBoris Popov #define NBNS_MAXREDIRECTS 3 /* maximum number of accepted redirects */ 106681a5bbeSBoris Popov #define NBDG_MAXSIZE 576 /* maximum nbns datagram size */ 107681a5bbeSBoris Popov 108681a5bbeSBoris Popov /* 109681a5bbeSBoris Popov * NETBIOS addressing 110681a5bbeSBoris Popov */ 111681a5bbeSBoris Popov union nb_tran { 112681a5bbeSBoris Popov struct sockaddr_in x_in; 1132c284d93SGleb Smirnoff /* struct sockaddr_ipx was here. */ 114681a5bbeSBoris Popov }; 115681a5bbeSBoris Popov 116681a5bbeSBoris Popov struct nb_name { 117681a5bbeSBoris Popov u_int nn_type; 118681a5bbeSBoris Popov u_char nn_name[NB_NAMELEN + 1]; 119681a5bbeSBoris Popov u_char * nn_scope; 120681a5bbeSBoris Popov }; 121681a5bbeSBoris Popov 122681a5bbeSBoris Popov /* 123681a5bbeSBoris Popov * Socket address 124681a5bbeSBoris Popov */ 125681a5bbeSBoris Popov struct sockaddr_nb { 126681a5bbeSBoris Popov u_char snb_len; 127681a5bbeSBoris Popov u_char snb_family; 128681a5bbeSBoris Popov union nb_tran snb_tran; /* transport */ 129681a5bbeSBoris Popov u_char snb_name[1 + NB_ENCNAMELEN + 1]; /* encoded */ 130681a5bbeSBoris Popov }; 131681a5bbeSBoris Popov 132681a5bbeSBoris Popov #define snb_addrin snb_tran.x_in 133681a5bbeSBoris Popov 134681a5bbeSBoris Popov #endif /* !_NETSMB_NETBIOS_H_ */ 135