Zero the tdb key, there might be padding
[Samba.git] / source / libsmb / unexpected.c
blob195668c44a8bfcd16cb3661329d0c988611eb400
1 /*
2 Unix SMB/CIFS implementation.
3 handle unexpected packets
4 Copyright (C) Andrew Tridgell 2000
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
23 static TDB_CONTEXT *tdbd = NULL;
25 /* the key type used in the unexpeceted packet database */
26 struct unexpected_key {
27 enum packet_type packet_type;
28 time_t timestamp;
29 int count;
32 /****************************************************************************
33 All unexpected packets are passed in here, to be stored in a unexpected
34 packet database. This allows nmblookup and other tools to receive packets
35 erroneoously sent to the wrong port by broken MS systems.
36 **************************************************************************/
38 void unexpected_packet(struct packet_struct *p)
40 static int count;
41 TDB_DATA kbuf, dbuf;
42 struct unexpected_key key;
43 char buf[1024];
44 int len=0;
45 uint32_t enc_ip;
47 if (!tdbd) {
48 tdbd = tdb_open_log(lock_path("unexpected.tdb"), 0,
49 TDB_CLEAR_IF_FIRST|TDB_DEFAULT,
50 O_RDWR | O_CREAT, 0644);
51 if (!tdbd) {
52 DEBUG(0,("Failed to open unexpected.tdb\n"));
53 return;
57 memset(buf,'\0',sizeof(buf));
59 /* Encode the ip addr and port. */
60 enc_ip = ntohl(p->ip.s_addr);
61 SIVAL(buf,0,enc_ip);
62 SSVAL(buf,4,p->port);
64 len = build_packet(&buf[6], sizeof(buf)-6, p) + 6;
66 ZERO_STRUCT(key); /* needed for potential alignment */
68 key.packet_type = p->packet_type;
69 key.timestamp = p->timestamp;
70 key.count = count++;
72 kbuf.dptr = (uint8_t *)&key;
73 kbuf.dsize = sizeof(key);
74 dbuf.dptr = (uint8_t *)buf;
75 dbuf.dsize = len;
77 tdb_store(tdbd, kbuf, dbuf, TDB_REPLACE);
81 static time_t lastt;
83 /****************************************************************************
84 Delete the record if it is too old.
85 **************************************************************************/
87 static int traverse_fn(TDB_CONTEXT *ttdb, TDB_DATA kbuf, TDB_DATA dbuf, void *state)
89 struct unexpected_key key;
91 memcpy(&key, kbuf.dptr, sizeof(key));
93 if (lastt - key.timestamp > NMBD_UNEXPECTED_TIMEOUT) {
94 tdb_delete(ttdb, kbuf);
97 return 0;
101 /****************************************************************************
102 Delete all old unexpected packets.
103 **************************************************************************/
105 void clear_unexpected(time_t t)
107 if (!tdbd) return;
109 if ((lastt != 0) && (t < lastt + NMBD_UNEXPECTED_TIMEOUT))
110 return;
112 lastt = t;
114 tdb_traverse(tdbd, traverse_fn, NULL);
117 struct receive_unexpected_state {
118 struct packet_struct *matched_packet;
119 int match_id;
120 enum packet_type match_type;
121 const char *match_name;
124 /****************************************************************************
125 tdb traversal fn to find a matching 137 packet.
126 **************************************************************************/
128 static int traverse_match(TDB_CONTEXT *ttdb, TDB_DATA kbuf, TDB_DATA dbuf,
129 void *private_data)
131 struct receive_unexpected_state *state =
132 (struct receive_unexpected_state *)private_data;
133 struct unexpected_key key;
134 struct in_addr ip;
135 uint32_t enc_ip;
136 int port;
137 struct packet_struct *p;
139 memcpy(&key, kbuf.dptr, sizeof(key));
141 if (key.packet_type != state->match_type) return 0;
143 if (dbuf.dsize < 6) {
144 return 0;
147 /* Decode the ip addr and port. */
148 enc_ip = IVAL(dbuf.dptr,0);
149 ip.s_addr = htonl(enc_ip);
150 port = SVAL(dbuf.dptr,4);
152 p = parse_packet((char *)&dbuf.dptr[6],
153 dbuf.dsize-6,
154 state->match_type,
156 port);
158 if ((state->match_type == NMB_PACKET &&
159 p->packet.nmb.header.name_trn_id == state->match_id) ||
160 (state->match_type == DGRAM_PACKET &&
161 match_mailslot_name(p, state->match_name))) {
162 state->matched_packet = p;
163 return -1;
166 free_packet(p);
168 return 0;
171 /****************************************************************************
172 Check for a particular packet in the unexpected packet queue.
173 **************************************************************************/
175 struct packet_struct *receive_unexpected(enum packet_type packet_type, int id,
176 const char *mailslot_name)
178 TDB_CONTEXT *tdb2;
179 struct receive_unexpected_state state;
181 tdb2 = tdb_open_log(lock_path("unexpected.tdb"), 0, 0, O_RDONLY, 0);
182 if (!tdb2) return NULL;
184 state.matched_packet = NULL;
185 state.match_id = id;
186 state.match_type = packet_type;
187 state.match_name = mailslot_name;
189 tdb_traverse(tdb2, traverse_match, &state);
191 tdb_close(tdb2);
193 return state.matched_packet;