d6813b36b9b3c9264b134219f38edcdeecc48b83
[kamenim/samba.git] / source4 / libcli / dgram / browse.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    handling for browsing dgram requests
5
6    Copyright (C) Jelmer Vernooij 2005
7         Heavily based on ntlogon.c
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25 #include "lib/events/events.h"
26 #include "libcli/nbt/libnbt.h"
27 #include "libcli/dgram/libdgram.h"
28 #include "lib/socket/socket.h"
29 #include "librpc/gen_ndr/ndr_nbt.h"
30
31 NTSTATUS dgram_mailslot_browse_send(struct nbt_dgram_socket *dgmsock,
32      struct nbt_name *dest_name, const struct nbt_peer_socket *dest,
33      struct nbt_name *src_name, struct nbt_browse_packet *request)
34 {
35         NTSTATUS status;
36         DATA_BLOB blob;
37         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
38
39         status = ndr_push_struct_blob(&blob, tmp_ctx, request, 
40                                       (ndr_push_flags_fn_t)ndr_push_nbt_browse_packet);
41         if (!NT_STATUS_IS_OK(status)) {
42                 talloc_free(tmp_ctx);
43                 return status;
44         }
45
46         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
47                                      NBT_MAILSLOT_BROWSE,
48                                      dest_name, dest, 
49                                      src_name, &blob);
50         talloc_free(tmp_ctx);
51         return status;
52 }
53
54 NTSTATUS dgram_mailslot_browse_reply(struct nbt_dgram_socket *dgmsock,
55       struct nbt_dgram_packet *request, const char *mailslot_name,
56       struct nbt_browse_packet *reply)
57 {
58         NTSTATUS status;
59         DATA_BLOB blob;
60         TALLOC_CTX *tmp_ctx = talloc_new(dgmsock);
61         struct nbt_name myname;
62         struct nbt_peer_socket dest;
63
64         status = ndr_push_struct_blob(&blob, tmp_ctx, reply, 
65                                       (ndr_push_flags_fn_t)ndr_push_nbt_browse_packet);
66         if (!NT_STATUS_IS_OK(status)) {
67                 talloc_free(tmp_ctx);
68                 return status;
69         }
70
71         make_nbt_name_client(&myname, lp_netbios_name());
72
73         dest.port = request->src_port;
74         dest.addr = request->src_addr;
75         status = dgram_mailslot_send(dgmsock, DGRAM_DIRECT_UNIQUE, 
76                                      mailslot_name,
77                                      &request->data.msg.source_name,
78                                      &dest,
79                                      &myname, &blob);
80         talloc_free(tmp_ctx);
81         return status;
82 }
83
84 NTSTATUS dgram_mailslot_browse_parse(struct dgram_mailslot_handler *dgmslot,
85      TALLOC_CTX *mem_ctx, struct nbt_dgram_packet *dgram,
86          struct nbt_browse_packet *pkt)
87 {
88         DATA_BLOB data = dgram_mailslot_data(dgram);
89         NTSTATUS status;
90
91         status = ndr_pull_struct_blob(&data, mem_ctx, pkt, 
92                                       (ndr_pull_flags_fn_t)ndr_pull_nbt_browse_packet);
93         if (!NT_STATUS_IS_OK(status)) {
94                 DEBUG(0,("Failed to parse browse packet of length %d\n", 
95                          (int)data.length));
96                 if (DEBUGLVL(10)) {
97                         file_save("browse.dat", data.data, data.length);
98                 }
99         }
100         return status;
101 }