[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / libsmb / clidgram.c
blob83ea81ddf1e86748037f4d700844dd6715a39a6e
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
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 2 of the License, or
11 (at your option) any later version.
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.
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.
23 #include "includes.h"
26 * cli_send_mailslot, send a mailslot for client code ...
29 BOOL cli_send_mailslot(BOOL unique, const char *mailslot,
30 uint16 priority,
31 char *buf, int len,
32 const char *srcname, int src_type,
33 const char *dstname, int dest_type,
34 struct in_addr dest_ip)
36 struct packet_struct p;
37 struct dgram_packet *dgram = &p.packet.dgram;
38 char *ptr, *p2;
39 char tmp[4];
40 pid_t nmbd_pid;
42 if ((nmbd_pid = pidfile_pid("nmbd")) == 0) {
43 DEBUG(3, ("No nmbd found\n"));
44 return False;
47 if (!message_init())
48 return False;
50 memset((char *)&p, '\0', sizeof(p));
53 * Next, build the DGRAM ...
56 /* DIRECT GROUP or UNIQUE datagram. */
57 dgram->header.msg_type = unique ? 0x10 : 0x11;
58 dgram->header.flags.node_type = M_NODE;
59 dgram->header.flags.first = True;
60 dgram->header.flags.more = False;
61 dgram->header.dgm_id = ((unsigned)time(NULL)%(unsigned)0x7FFF) +
62 ((unsigned)sys_getpid()%(unsigned)100);
63 /* source ip is filled by nmbd */
64 dgram->header.dgm_length = 0; /* Let build_dgram() handle this. */
65 dgram->header.packet_offset = 0;
67 make_nmb_name(&dgram->source_name,srcname,src_type);
68 make_nmb_name(&dgram->dest_name,dstname,dest_type);
70 ptr = &dgram->data[0];
72 /* Setup the smb part. */
73 ptr -= 4; /* XXX Ugliness because of handling of tcp SMB length. */
74 memcpy(tmp,ptr,4);
75 set_message(ptr,17,strlen(mailslot) + 1 + len,True);
76 memcpy(ptr,tmp,4);
78 SCVAL(ptr,smb_com,SMBtrans);
79 SSVAL(ptr,smb_vwv1,len);
80 SSVAL(ptr,smb_vwv11,len);
81 SSVAL(ptr,smb_vwv12,70 + strlen(mailslot));
82 SSVAL(ptr,smb_vwv13,3);
83 SSVAL(ptr,smb_vwv14,1);
84 SSVAL(ptr,smb_vwv15,priority);
85 SSVAL(ptr,smb_vwv16,2);
86 p2 = smb_buf(ptr);
87 fstrcpy(p2,mailslot);
88 p2 = skip_string(ptr,MAX_DGRAM_SIZE,p2);
89 if (!p2) {
90 return False;
93 memcpy(p2,buf,len);
94 p2 += len;
96 dgram->datasize = PTR_DIFF(p2,ptr+4); /* +4 for tcp length. */
98 p.packet_type = DGRAM_PACKET;
99 p.ip = dest_ip;
100 p.timestamp = time(NULL);
102 DEBUG(4,("send_mailslot: Sending to mailslot %s from %s ",
103 mailslot, nmb_namestr(&dgram->source_name)));
104 DEBUGADD(4,("to %s IP %s\n", nmb_namestr(&dgram->dest_name),
105 inet_ntoa(dest_ip)));
107 return NT_STATUS_IS_OK(message_send_pid(pid_to_procid(nmbd_pid),
108 MSG_SEND_PACKET, &p, sizeof(p),
109 False));
113 * cli_get_response: Get a response ...
115 BOOL cli_get_response(const char *mailslot, char *buf, int bufsiz)
117 struct packet_struct *p;
119 p = receive_unexpected(DGRAM_PACKET, 0, mailslot);
121 if (p == NULL)
122 return False;
124 memcpy(buf, &p->packet.dgram.data[92],
125 MIN(bufsiz, p->packet.dgram.datasize-92));
127 return True;
131 * cli_get_backup_list: Send a get backup list request ...
134 static char cli_backup_list[1024];
136 int cli_get_backup_list(const char *myname, const char *send_to_name)
138 pstring outbuf;
139 char *p;
140 struct in_addr sendto_ip;
142 if (!resolve_name(send_to_name, &sendto_ip, 0x1d)) {
144 DEBUG(0, ("Could not resolve name: %s<1D>\n", send_to_name));
145 return False;
149 memset(cli_backup_list, '\0', sizeof(cli_backup_list));
150 memset(outbuf, '\0', sizeof(outbuf));
152 p = outbuf;
154 SCVAL(p, 0, ANN_GetBackupListReq);
155 p++;
157 SCVAL(p, 0, 1); /* Count pointer ... */
158 p++;
160 SIVAL(p, 0, 1); /* The sender's token ... */
161 p += 4;
163 cli_send_mailslot(True, "\\MAILSLOT\\BROWSE", 1, outbuf,
164 PTR_DIFF(p, outbuf), myname, 0, send_to_name,
165 0x1d, sendto_ip);
167 /* We should check the error and return if we got one */
169 /* Now, get the response ... */
171 cli_get_response("\\MAILSLOT\\BROWSE",
172 cli_backup_list, sizeof(cli_backup_list));
174 return True;
179 * cli_get_backup_server: Get the backup list and retrieve a server from it
182 int cli_get_backup_server(char *my_name, char *target, char *servername, int namesize)
185 /* Get the backup list first. We could pull this from the cache later */
187 cli_get_backup_list(my_name, target); /* FIXME: Check the response */
189 if (!cli_backup_list[0]) { /* Empty list ... try again */
191 cli_get_backup_list(my_name, target);
195 strncpy(servername, cli_backup_list, MIN(16, namesize));
197 return True;