2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 This file handles the messaging system calls for winpopup style
27 extern userdom_struct current_user_info
;
35 static struct msg_state
*smbd_msg_state
;
37 /****************************************************************************
39 ****************************************************************************/
41 static void msg_deliver(struct msg_state
*state
)
43 TALLOC_CTX
*frame
= talloc_stackframe();
53 if (! (*lp_msg_command())) {
54 DEBUG(1,("no messaging command specified\n"));
58 /* put it in a temporary file */
59 name
= talloc_asprintf(talloc_tos(), "%s/msg.XXXXXX", tmpdir());
63 fd
= smb_mkstemp(name
);
66 DEBUG(1, ("can't open message file %s: %s\n", name
,
72 * Incoming message is in DOS codepage format. Convert to UNIX.
75 if (!convert_string_talloc(talloc_tos(), CH_DOS
, CH_UNIX
, state
->msg
,
76 talloc_get_size(state
->msg
), (void *)&msg
,
78 DEBUG(3, ("Conversion failed, delivering message in DOS "
79 "codepage format\n"));
83 for (i
= 0; i
< len
; i
++) {
84 if ((msg
[i
] == '\r') &&
85 (i
< (len
-1)) && (msg
[i
+1] == '\n')) {
88 sz
= write(fd
, &msg
[i
], 1);
90 DEBUG(0, ("Write error to fd %d: %ld(%s)\n", fd
,
91 (long)sz
, strerror(errno
)));
98 s
= talloc_strdup(talloc_tos(), lp_msg_command());
103 alpha_strcpy(alpha_buf
, state
->from
, NULL
, sizeof(alpha_buf
));
105 s
= talloc_string_sub(talloc_tos(), s
, "%f", alpha_buf
);
110 alpha_strcpy(alpha_buf
, state
->to
, NULL
, sizeof(alpha_buf
));
112 s
= talloc_string_sub(talloc_tos(), s
, "%t", alpha_buf
);
117 s
= talloc_sub_basic(talloc_tos(), current_user_info
.smb_name
,
118 current_user_info
.domain
, s
);
123 s
= talloc_string_sub(talloc_tos(), s
, "%s", name
);
134 /****************************************************************************
136 conn POINTER CAN BE NULL HERE !
137 ****************************************************************************/
139 void reply_sends(struct smb_request
*req
)
141 struct msg_state
*state
;
146 START_PROFILE(SMBsends
);
148 if (!(*lp_msg_command())) {
149 reply_doserror(req
, ERRSRV
, ERRmsgoff
);
150 END_PROFILE(SMBsends
);
154 state
= talloc(talloc_tos(), struct msg_state
);
156 p
= smb_buf(req
->inbuf
)+1;
157 p
+= srvstr_pull_buf_talloc(
158 state
, (char *)req
->inbuf
, req
->flags2
, &state
->from
, p
,
159 STR_ASCII
|STR_TERMINATE
) + 1;
160 p
+= srvstr_pull_buf_talloc(
161 state
, (char *)req
->inbuf
, req
->flags2
, &state
->to
, p
,
162 STR_ASCII
|STR_TERMINATE
) + 1;
167 len
= MIN(len
, smb_bufrem(req
->inbuf
, msg
+2));
169 state
->msg
= talloc_array(state
, char, len
);
171 if (state
->msg
== NULL
) {
172 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
173 END_PROFILE(SMBsends
);
177 memcpy(state
->msg
, msg
+2, len
);
181 reply_outbuf(req
, 0, 0);
183 END_PROFILE(SMBsends
);
187 /****************************************************************************
189 conn POINTER CAN BE NULL HERE !
190 ****************************************************************************/
192 void reply_sendstrt(struct smb_request
*req
)
196 START_PROFILE(SMBsendstrt
);
198 if (!(*lp_msg_command())) {
199 reply_doserror(req
, ERRSRV
, ERRmsgoff
);
200 END_PROFILE(SMBsendstrt
);
204 TALLOC_FREE(smbd_msg_state
);
206 smbd_msg_state
= TALLOC_ZERO_P(NULL
, struct msg_state
);
208 if (smbd_msg_state
== NULL
) {
209 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
210 END_PROFILE(SMBsendstrt
);
214 p
= smb_buf(req
->inbuf
)+1;
215 p
+= srvstr_pull_buf_talloc(
216 smbd_msg_state
, (char *)req
->inbuf
, req
->flags2
,
217 &smbd_msg_state
->from
, p
, STR_ASCII
|STR_TERMINATE
) + 1;
218 p
+= srvstr_pull_buf_talloc(
219 smbd_msg_state
, (char *)req
->inbuf
, req
->flags2
,
220 &smbd_msg_state
->to
, p
, STR_ASCII
|STR_TERMINATE
) + 1;
222 DEBUG( 3, ( "SMBsendstrt (from %s to %s)\n", smbd_msg_state
->from
,
223 smbd_msg_state
->to
) );
225 reply_outbuf(req
, 0, 0);
227 END_PROFILE(SMBsendstrt
);
231 /****************************************************************************
233 conn POINTER CAN BE NULL HERE !
234 ****************************************************************************/
236 void reply_sendtxt(struct smb_request
*req
)
243 START_PROFILE(SMBsendtxt
);
245 if (! (*lp_msg_command())) {
246 reply_doserror(req
, ERRSRV
, ERRmsgoff
);
247 END_PROFILE(SMBsendtxt
);
251 if (smbd_msg_state
== NULL
) {
252 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
253 END_PROFILE(SMBsendtxt
);
257 msg
= smb_buf(req
->inbuf
) + 1;
259 old_len
= talloc_get_size(smbd_msg_state
->msg
);
261 len
= MIN(SVAL(msg
, 0), smb_bufrem(req
->inbuf
, msg
+2));
263 tmp
= TALLOC_REALLOC_ARRAY(smbd_msg_state
, smbd_msg_state
->msg
,
264 char, old_len
+ len
);
267 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
268 END_PROFILE(SMBsendtxt
);
272 smbd_msg_state
->msg
= tmp
;
274 memcpy(&smbd_msg_state
->msg
[old_len
], msg
+2, len
);
276 DEBUG( 3, ( "SMBsendtxt\n" ) );
278 reply_outbuf(req
, 0, 0);
280 END_PROFILE(SMBsendtxt
);
284 /****************************************************************************
286 conn POINTER CAN BE NULL HERE !
287 ****************************************************************************/
289 void reply_sendend(struct smb_request
*req
)
291 START_PROFILE(SMBsendend
);
293 if (! (*lp_msg_command())) {
294 reply_doserror(req
, ERRSRV
, ERRmsgoff
);
295 END_PROFILE(SMBsendend
);
299 DEBUG(3,("SMBsendend\n"));
301 msg_deliver(smbd_msg_state
);
303 TALLOC_FREE(smbd_msg_state
);
305 reply_outbuf(req
, 0, 0);
307 END_PROFILE(SMBsendend
);