netbios.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*-
  2. * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  3. *
  4. * Copyright (c) 2000-2001 Boris Popov
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. *
  28. * $FreeBSD$
  29. */
  30. #ifndef _NETSMB_NETBIOS_H_
  31. #define _NETSMB_NETBIOS_H_
  32. /*
  33. * make this file dirty...
  34. */
  35. #ifndef _NETINET_IN_H_
  36. #include <netinet/in.h>
  37. #endif
  38. #define NMB_TCP_PORT 137
  39. #define NBPROTO_TCPSSN 1 /* NETBIOS session over TCP */
  40. #define NBPROTO_IPXSSN 11 /* NETBIOS over IPX */
  41. #define NB_NAMELEN 16
  42. #define NB_ENCNAMELEN NB_NAMELEN * 2
  43. #define NB_MAXLABLEN 63
  44. #define NB_MINSALEN (sizeof(struct sockaddr_nb))
  45. /*
  46. * name types
  47. */
  48. #define NBT_WKSTA 0x00
  49. #define NBT_MESSENGER 0x03
  50. #define NBT_RAS_SERVER 0x06
  51. #define NBT_DOMAIN_MASTER_BROWSER 0x1B
  52. #define NBT_DOMAIN_CONTROLLER 0x1C
  53. #define NBT_MASTER_BROWSER 0x1D
  54. #define NBT_NETDDE 0x1F
  55. #define NBT_SERVER 0x20
  56. #define NBT_RAS_CLIENT 0x21
  57. /*
  58. * Session packet types
  59. */
  60. #define NB_SSN_MESSAGE 0x0
  61. #define NB_SSN_REQUEST 0x81
  62. #define NB_SSN_POSRESP 0x82
  63. #define NB_SSN_NEGRESP 0x83
  64. #define NB_SSN_RTGRESP 0x84
  65. #define NB_SSN_KEEPALIVE 0x85
  66. /*
  67. * resolver: Opcodes
  68. */
  69. #define NBNS_OPCODE_QUERY 0x00
  70. #define NBNS_OPCODE_REGISTER 0x05
  71. #define NBNS_OPCODE_RELEASE 0x06
  72. #define NBNS_OPCODE_WACK 0x07
  73. #define NBNS_OPCODE_REFRESH 0x08
  74. #define NBNS_OPCODE_RESPONSE 0x10 /* or'ed with other opcodes */
  75. /*
  76. * resolver: NM_FLAGS
  77. */
  78. #define NBNS_NMFLAG_BCAST 0x01
  79. #define NBNS_NMFLAG_RA 0x08 /* recursion available */
  80. #define NBNS_NMFLAG_RD 0x10 /* recursion desired */
  81. #define NBNS_NMFLAG_TC 0x20 /* truncation occurred */
  82. #define NBNS_NMFLAG_AA 0x40 /* authoritative answer */
  83. /*
  84. * resolver: Question types
  85. */
  86. #define NBNS_QUESTION_TYPE_NB 0x0020
  87. #define NBNS_QUESTION_TYPE_NBSTAT 0x0021
  88. /*
  89. * resolver: Question class
  90. */
  91. #define NBNS_QUESTION_CLASS_IN 0x0001
  92. /*
  93. * resolver: Limits
  94. */
  95. #define NBNS_MAXREDIRECTS 3 /* maximum number of accepted redirects */
  96. #define NBDG_MAXSIZE 576 /* maximum nbns datagram size */
  97. /*
  98. * NETBIOS addressing
  99. */
  100. union nb_tran {
  101. struct sockaddr_in x_in;
  102. /* struct sockaddr_ipx was here. */
  103. };
  104. struct nb_name {
  105. u_int nn_type;
  106. u_char nn_name[NB_NAMELEN + 1];
  107. u_char * nn_scope;
  108. };
  109. /*
  110. * Socket address
  111. */
  112. struct sockaddr_nb {
  113. u_char snb_len;
  114. u_char snb_family;
  115. union nb_tran snb_tran; /* transport */
  116. u_char snb_name[1 + NB_ENCNAMELEN + 1]; /* encoded */
  117. };
  118. #define snb_addrin snb_tran.x_in
  119. #endif /* !_NETSMB_NETBIOS_H_ */