| 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 2 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(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)
|
|---|
| 35 | {
|
|---|
| 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;
|
|---|
| 41 |
|
|---|
| 42 | if ((nmbd_pid = pidfile_pid("nmbd")) == 0) {
|
|---|
| 43 | DEBUG(3, ("No nmbd found\n"));
|
|---|
| 44 | return False;
|
|---|
| 45 | }
|
|---|
| 46 |
|
|---|
| 47 | if (!message_init())
|
|---|
| 48 | return False;
|
|---|
| 49 |
|
|---|
| 50 | memset((char *)&p, '\0', sizeof(p));
|
|---|
| 51 |
|
|---|
| 52 | /*
|
|---|
| 53 | * Next, build the DGRAM ...
|
|---|
| 54 | */
|
|---|
| 55 |
|
|---|
| 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;
|
|---|
| 66 |
|
|---|
| 67 | make_nmb_name(&dgram->source_name,srcname,src_type);
|
|---|
| 68 | make_nmb_name(&dgram->dest_name,dstname,dest_type);
|
|---|
| 69 |
|
|---|
| 70 | ptr = &dgram->data[0];
|
|---|
| 71 |
|
|---|
| 72 | /* Setup the smb part. */
|
|---|
| 73 | ptr -= 4; /* XXX Ugliness because of handling of tcp SMB length. */
|
|---|
| 74 | memcpy(tmp,ptr,4);
|
|---|
| 75 |
|
|---|
| 76 | if (smb_size + 17*2 + strlen(mailslot) + 1 + len > MAX_DGRAM_SIZE) {
|
|---|
| 77 | DEBUG(0, ("cli_send_mailslot: Cannot write beyond end of packet\n"));
|
|---|
| 78 | return False;
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | set_message(ptr,17,strlen(mailslot) + 1 + len,True);
|
|---|
| 82 | memcpy(ptr,tmp,4);
|
|---|
| 83 |
|
|---|
| 84 | SCVAL(ptr,smb_com,SMBtrans);
|
|---|
| 85 | SSVAL(ptr,smb_vwv1,len);
|
|---|
| 86 | SSVAL(ptr,smb_vwv11,len);
|
|---|
| 87 | SSVAL(ptr,smb_vwv12,70 + strlen(mailslot));
|
|---|
| 88 | SSVAL(ptr,smb_vwv13,3);
|
|---|
|
|---|