r23779: Change from v2 or later to v3 or later.
[kai/samba.git] / source / libsmb / clidgram.c
1 /* 
2    Unix SMB/CIFS implementation.
3    client dgram calls
4    Copyright (C) Andrew Tridgell 1994-1998
5    Copyright (C) Richard Sharpe 2001
6    Copyright (C) John Terpstra 2001
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25 /*
26  * cli_send_mailslot, send a mailslot for client code ...
27  */
28
29 BOOL cli_send_mailslot(struct messaging_context *msg_ctx,
30                        BOOL unique, const char *mailslot,
31                        uint16 priority,
32                        char *buf, int len,
33                        const char *srcname, int src_type, 
34                        const char *dstname, int dest_type,
35                        struct in_addr dest_ip)
36 {
37         struct packet_struct p;
38         struct dgram_packet *dgram = &p.packet.dgram;
39         char *ptr, *p2;
40         char tmp[4];
41         pid_t nmbd_pid;
42
43         if ((nmbd_pid = pidfile_pid("nmbd")) == 0) {
44                 DEBUG(3, ("No nmbd found\n"));
45                 return False;
46         }
47
48         memset((char *)&p, '\0', sizeof(p));
49
50         /*
51          * Next, build the DGRAM ...
52          */
53
54         /* DIRECT GROUP or UNIQUE datagram. */
55         dgram->header.msg_type = unique ? 0x10 : 0x11; 
56         dgram->header.flags.node_type = M_NODE;
57         dgram->header.flags.first = True;
58         dgram->header.flags.more = False;
59         dgram->header.dgm_id = ((unsigned)time(NULL)%(unsigned)0x7FFF) +
60                 ((unsigned)sys_getpid()%(unsigned)100);
61         /* source ip is filled by nmbd */
62         dgram->header.dgm_length = 0; /* Let build_dgram() handle this. */
63         dgram->header.packet_offset = 0;
64   
65         make_nmb_name(&dgram->source_name,srcname,src_type);
66         make_nmb_name(&dgram->dest_name,dstname,dest_type);
67
68         ptr = &dgram->data[0];
69
70         /* Setup the smb part. */
71         ptr -= 4; /* XXX Ugliness because of handling of tcp SMB length. */
72         memcpy(tmp,ptr,4);
73         set_message(NULL,ptr,17,strlen(mailslot) + 1 + len,True);
74         memcpy(ptr,tmp,4);
75
76         SCVAL(ptr,smb_com,SMBtrans);
77         SSVAL(ptr,smb_vwv1,len);
78         SSVAL(ptr,smb_vwv11,len);
79         SSVAL(ptr,smb_vwv12,70 + strlen(mailslot));
80         SSVAL(ptr,smb_vwv13,3);
81         SSVAL(ptr,smb_vwv14,1);
82         SSVAL(ptr,smb_vwv15,priority);
83         SSVAL(ptr,smb_vwv16,2);
84         p2 = smb_buf(ptr);
85         fstrcpy(p2,mailslot);
86         p2 = skip_string(ptr,MAX_DGRAM_SIZE,p2);
87         if (!p2) {
88                 return False;
89         }
90
91         memcpy(p2,buf,len);
92         p2 += len;
93
94         dgram->datasize = PTR_DIFF(p2,ptr+4); /* +4 for tcp length. */
95
96         p.packet_type = DGRAM_PACKET;
97         p.ip = dest_ip;
98         p.timestamp = time(NULL);
99
100         DEBUG(4,("send_mailslot: Sending to mailslot %s from %s ",
101                  mailslot, nmb_namestr(&dgram->source_name)));
102         DEBUGADD(4,("to %s IP %s\n", nmb_namestr(&dgram->dest_name),
103                     inet_ntoa(dest_ip)));
104
105         return NT_STATUS_IS_OK(messaging_send_buf(msg_ctx,
106                                                   pid_to_procid(nmbd_pid),
107                                                   MSG_SEND_PACKET,
108                                                   (uint8 *)&p, sizeof(p)));
109 }
110
111 /*
112  * cli_get_response: Get a response ...
113  */
114 BOOL cli_get_response(const char *mailslot, char *buf, int bufsiz)
115 {
116         struct packet_struct *p;
117
118         p = receive_unexpected(DGRAM_PACKET, 0, mailslot);
119
120         if (p == NULL)
121                 return False;
122
123         memcpy(buf, &p->packet.dgram.data[92],
124                MIN(bufsiz, p->packet.dgram.datasize-92));
125
126         return True;
127 }
128
129 /*
130  * cli_get_backup_list: Send a get backup list request ...
131  */
132
133 static char cli_backup_list[1024];
134
135 int cli_get_backup_list(struct messaging_context *msg_ctx,
136                         const char *myname, const char *send_to_name)
137 {
138         pstring outbuf;
139         char *p;
140         struct in_addr sendto_ip;
141
142         if (!resolve_name(send_to_name, &sendto_ip, 0x1d)) {
143
144                 DEBUG(0, ("Could not resolve name: %s<1D>\n", send_to_name));
145                 return False;
146
147         }
148
149         memset(cli_backup_list, '\0', sizeof(cli_backup_list));
150         memset(outbuf, '\0', sizeof(outbuf));
151
152         p = outbuf;
153
154         SCVAL(p, 0, ANN_GetBackupListReq);
155         p++;
156
157         SCVAL(p, 0, 1); /* Count pointer ... */
158         p++;
159
160         SIVAL(p, 0, 1); /* The sender's token ... */
161         p += 4;
162
163         cli_send_mailslot(msg_ctx, True, "\\MAILSLOT\\BROWSE", 1, outbuf, 
164                           PTR_DIFF(p, outbuf), myname, 0, send_to_name, 
165                           0x1d, sendto_ip);
166
167         /* We should check the error and return if we got one */
168
169         /* Now, get the response ... */
170
171         cli_get_response("\\MAILSLOT\\BROWSE",
172                          cli_backup_list, sizeof(cli_backup_list));
173
174         return True;
175
176 }
177
178 /*
179  * cli_get_backup_server: Get the backup list and retrieve a server from it
180  */
181
182 int cli_get_backup_server(struct messaging_context *msg_ctx,
183                           char *my_name, char *target, char *servername,
184                           int namesize)
185 {
186
187   /* Get the backup list first. We could pull this from the cache later */
188
189   cli_get_backup_list(msg_ctx, my_name, target);  /* FIXME: Check the response */
190
191   if (!cli_backup_list[0]) { /* Empty list ... try again */
192
193     cli_get_backup_list(msg_ctx, my_name, target);
194
195   }
196
197   strncpy(servername, cli_backup_list, MIN(16, namesize));
198
199   return True;
200
201 }