2 Unix SMB/CIFS implementation.
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 3 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, see <http://www.gnu.org/licenses/>.
25 * cli_send_mailslot, send a mailslot for client code ...
28 bool cli_send_mailslot(struct messaging_context
*msg_ctx
,
29 bool unique
, const char *mailslot
,
32 const char *srcname
, int src_type
,
33 const char *dstname
, int dest_type
,
34 const struct sockaddr_storage
*dest_ss
)
36 struct packet_struct p
;
37 struct dgram_packet
*dgram
= &p
.packet
.dgram
;
41 char addr
[INET6_ADDRSTRLEN
];
43 if ((nmbd_pid
= pidfile_pid("nmbd")) == 0) {
44 DEBUG(3, ("No nmbd found\n"));
48 if (dest_ss
->ss_family
!= AF_INET
) {
49 DEBUG(3, ("cli_send_mailslot: can't send to IPv6 address.\n"));
53 memset((char *)&p
, '\0', sizeof(p
));
56 * Next, build the DGRAM ...
59 /* DIRECT GROUP or UNIQUE datagram. */
60 dgram
->header
.msg_type
= unique
? 0x10 : 0x11;
61 dgram
->header
.flags
.node_type
= M_NODE
;
62 dgram
->header
.flags
.first
= True
;
63 dgram
->header
.flags
.more
= False
;
64 dgram
->header
.dgm_id
= ((unsigned)time(NULL
)%(unsigned)0x7FFF) +
65 ((unsigned)sys_getpid()%(unsigned)100);
66 /* source ip is filled by nmbd */
67 dgram
->header
.dgm_length
= 0; /* Let build_dgram() handle this. */
68 dgram
->header
.packet_offset
= 0;
70 make_nmb_name(&dgram
->source_name
,srcname
,src_type
);
71 make_nmb_name(&dgram
->dest_name
,dstname
,dest_type
);
73 ptr
= &dgram
->data
[0];
75 /* Setup the smb part. */
76 ptr
-= 4; /* XXX Ugliness because of handling of tcp SMB length. */
79 if (smb_size
+ 17*2 + strlen(mailslot
) + 1 + len
> MAX_DGRAM_SIZE
) {
80 DEBUG(0, ("cli_send_mailslot: Cannot write beyond end of packet\n"));
84 cli_set_message(ptr
,17,strlen(mailslot
) + 1 + len
,True
);
87 SCVAL(ptr
,smb_com
,SMBtrans
);
88 SSVAL(ptr
,smb_vwv1
,len
);
89 SSVAL(ptr
,smb_vwv11
,len
);
90 SSVAL(ptr
,smb_vwv12
,70 + strlen(mailslot
));
91 SSVAL(ptr
,smb_vwv13
,3);
92 SSVAL(ptr
,smb_vwv14
,1);
93 SSVAL(ptr
,smb_vwv15
,priority
);
94 SSVAL(ptr
,smb_vwv16
,2);
97 p2
= skip_string(ptr
,MAX_DGRAM_SIZE
,p2
);
105 dgram
->datasize
= PTR_DIFF(p2
,ptr
+4); /* +4 for tcp length. */
107 p
.packet_type
= DGRAM_PACKET
;
108 p
.ip
= ((const struct sockaddr_in
*)dest_ss
)->sin_addr
;
109 p
.timestamp
= time(NULL
);
111 DEBUG(4,("send_mailslot: Sending to mailslot %s from %s ",
112 mailslot
, nmb_namestr(&dgram
->source_name
)));
113 print_sockaddr(addr
, sizeof(addr
), dest_ss
);
115 DEBUGADD(4,("to %s IP %s\n", nmb_namestr(&dgram
->dest_name
), addr
));
117 return NT_STATUS_IS_OK(messaging_send_buf(msg_ctx
,
118 pid_to_procid(nmbd_pid
),
120 (uint8
*)&p
, sizeof(p
)));