summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_at.c
blob: 2eb72c8aea11568689abb86ba032f658ffea3240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/* 
 *  Unix SMB/Netbios implementation.
 *  Version 2.1.
 *  RPC parsing routines: scheduler service
 *  Copyright (C) Matthew Chapman                   1999,
 *  Copyright (C) Luke Kenneth Casson Leighton 1996-1999,
 *  Copyright (C) Andrew Tridgell              1992-1999.
 *  
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *  
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *  
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include "includes.h"

extern int DEBUGLEVEL;

/*******************************************************************
 make_at_q_add_job
 ********************************************************************/
void make_at_q_add_job(AT_Q_ADD_JOB *q_a, char *server,
			AT_JOB_INFO *info, char *command)
{
	DEBUG(5,("make_at_q_add_job\n"));

	make_buf_unistr2(&(q_a->uni_srv_name), &(q_a->ptr_srv_name), server);
	memcpy(&(q_a->info), info, sizeof(q_a->info));
	make_unistr2(&(q_a->command), command, strlen(command)+1);
}

/*******************************************************************
reads or writes a AT_JOB_INFO structure.
********************************************************************/
void at_io_job_info(char *desc, AT_JOB_INFO *info, prs_struct *ps, int depth)
{
	if (info == NULL) return;

	prs_debug(ps, depth, desc, "at_io_job_info");
	depth++;

	prs_align(ps);

	prs_uint32("time", ps, depth, &(info->time));
	prs_uint32("monthdays", ps, depth, &(info->monthdays));
	prs_uint8("weekdays", ps, depth, &(info->weekdays));
	prs_uint8("flags", ps, depth, &(info->flags));
	prs_align(ps);

	prs_uint32("ptr_command", ps, depth, &(info->ptr_command));
}

/*******************************************************************
reads or writes a AT_Q_ADD_JOB structure.
********************************************************************/
void at_io_q_add_job(char *desc, AT_Q_ADD_JOB *q_a, prs_struct *ps, int depth)
{
	if (q_a == NULL) return;

	prs_debug(ps, depth, desc, "at_q_add_job");
	depth++;

	prs_align(ps);
	prs_uint32("ptr_srv_name", ps, depth, &(q_a->ptr_srv_name));
	smb_io_unistr2("", &(q_a->uni_srv_name), q_a->ptr_srv_name, ps, depth); 
	at_io_job_info("", &(q_a->info), ps, depth);
	smb_io_unistr2("", &(q_a->command), q_a->info.ptr_command, ps, depth);
}

/*******************************************************************
reads or writes a AT_R_ADD_JOB structure.
********************************************************************/
void at_io_r_add_job(char *desc, AT_R_ADD_JOB *r_a, prs_struct *ps, int depth)
{
	if (r_a == NULL) return;

	prs_debug(ps, depth, desc, "at_r_add_job");
	depth++;

	prs_align(ps);
	prs_uint32("jobid", ps, depth, &(r_a->jobid));
	prs_uint32("status", ps, depth, &(r_a->status));
}

/*******************************************************************
 make_at_q_del_job
 ********************************************************************/
void make_at_q_del_job(AT_Q_DEL_JOB *q_a, char *server, uint32 min_jobid,
		       uint32 max_jobid)
{
	DEBUG(5,("make_at_q_del_job\n"));

	make_buf_unistr2(&(q_a->uni_srv_name), &(q_a->ptr_srv_name), server);
	q_a->min_jobid = min_jobid;
	q_a->max_jobid = max_jobid;
}

/*******************************************************************
reads or writes a AT_Q_DEL_JOB structure.
********************************************************************/
void at_io_q_del_job(char *desc, AT_Q_DEL_JOB *q_d, prs_struct *ps, int depth)
{
	if (q_d == NULL) return;

	prs_debug(ps, depth, desc, "at_q_del_job");
	depth++;

	prs_align(ps);

	prs_uint32("ptr_srv_name", ps, depth, &(q_d->ptr_srv_name));
	smb_io_unistr2("", &(q_d->uni_srv_name), q_d->ptr_srv_name, ps, depth); 
	prs_align(ps);
	prs_uint32("min_jobid", ps, depth, &(q_d->min_jobid));
	prs_uint32("max_jobid", ps, depth, &(q_d->max_jobid));
}

/*******************************************************************
reads or writes a AT_R_DEL_JOB structure.
********************************************************************/
void at_io_r_del_job(char *desc, AT_R_DEL_JOB *r_d, prs_struct *ps, int depth)
{
	if (r_d == NULL) return;

	prs_debug(ps, depth, desc, "at_r_del_job");
	depth++;

	prs_align(ps);
	prs_uint32("status", ps, depth, &(r_d->status));
}

/*******************************************************************
 make_at_q_enum_jobs
 ********************************************************************/
void make_at_q_enum_jobs(AT_Q_ENUM_JOBS *q_e, char *server)
{
	DEBUG(5,("make_at_q_enum_jobs\n"));

	make_buf_unistr2(&(q_e->uni_srv_name), &(q_e->ptr_srv_name), server);
	q_e->unknown0 = 0;
	q_e->unknown1 = 0;
	q_e->max_len = 0xffff;
	q_e->ptr_resume = 1;
	q_e->hnd_resume = 0;
}

/*******************************************************************
reads or writes a AT_Q_ENUM_JOBS structure.
********************************************************************/
void at_io_q_enum_jobs(char *desc, AT_Q_ENUM_JOBS *q_e, prs_struct *ps, int depth)
{
	if (q_e == NULL) return;

	prs_debug(ps, depth, desc, "at_q_enum_jobs");
	depth++;

	prs_align(ps);
	prs_uint32("ptr_srv_name", ps, depth, &(q_e->ptr_srv_name));
	smb_io_unistr2("", &(q_e->uni_srv_name), q_e->ptr_srv_name, ps, depth); 
	prs_align(ps);
	prs_uint32("unknown0", ps, depth, &(q_e->unknown0));
	prs_uint32("unknown1", ps, depth, &(q_e->unknown1));
	prs_uint32("max_len" , ps, depth, &(q_e->max_len ));

	prs_uint32("ptr_resume", ps, depth, &(q_e->ptr_resume));
	prs_uint32("hnd_resume", ps, depth, &(q_e->hnd_resume));
}

/*******************************************************************
reads or writes a AT_R_ENUM_JOBS structure.
********************************************************************/
void at_io_r_enum_jobs(char *desc, AT_R_ENUM_JOBS *r_e, prs_struct *ps, int depth)
{
	if (r_e == NULL) return;

	prs_debug(ps, depth, desc, "at_r_enum_jobs");
	depth++;

	prs_align(ps);
	prs_uint32("num_entries", ps, depth, &(r_e->num_entries));
	prs_uint32("ptr_entries", ps, depth, &(r_e->ptr_entries));

	if (r_e->ptr_entries != 0)
	{
		int i;

		prs_uint32("num_entries2", ps, depth, &(r_e->num_entries2));
		if (r_e->num_entries2 != r_e->num_entries)
		{
			/* RPC fault */
			return;
		}

		SMB_ASSERT_ARRAY(r_e->info, r_e->num_entries2);

		for (i = 0; i < r_e->num_entries2; i++)
		{
			prs_grow(ps);
			prs_uint32("jobid", ps, depth, &(r_e->info[i].jobid));
			at_io_job_info("", &(r_e->info[i].info), ps, depth);
		}

		for (i = 0; i < r_e->num_entries2; i++)
		{
			prs_grow(ps);
			smb_io_unistr2("", &(r_e->command[i]),
				 r_e->info[i].info.ptr_command, ps, depth);
		}
	}

	prs_align(ps);
	prs_uint32("total_entries", ps, depth, &(r_e->total_entries));
	prs_uint32("ptr_resume"   , ps, depth, &(r_e->ptr_resume   ));
	prs_uint32("hnd_resume"   , ps, depth, &(r_e->hnd_resume   ));

	prs_uint32("status", ps, depth, &(r_e->status));
}

/*******************************************************************
 make_at_q_query_job
 ********************************************************************/
void make_at_q_query_job(AT_Q_QUERY_JOB *q_q, char *server, uint32 jobid)
{
	DEBUG(5,("make_at_q_query_job\n"));

	make_buf_unistr2(&(q_q->uni_srv_name), &(q_q->ptr_srv_name), server);
	q_q->jobid = jobid;
}

/*******************************************************************
reads or writes a AT_Q_QUERY_JOB structure.
********************************************************************/
void at_io_q_query_job(char *desc, AT_Q_QUERY_JOB *q_q, prs_struct *ps, int depth)
{
	if (q_q == NULL) return;

	prs_debug(ps, depth, desc, "at_q_query_job");
	depth++;

	prs_align(ps);
	prs_uint32("ptr_srv_name", ps, depth, &(q_q->ptr_srv_name));
	smb_io_unistr2("", &(q_q->uni_srv_name), q_q->ptr_srv_name, ps, depth); 
	prs_align(ps);
	prs_uint32("jobid", ps, depth, &(q_q->jobid));
}

/*******************************************************************
reads or writes a AT_R_QUERY_JOB structure.
********************************************************************/
void at_io_r_query_job(char *desc, AT_R_QUERY_JOB *r_q, prs_struct *ps, int depth)
{
	if (r_q == NULL) return;

	prs_debug(ps, depth, desc, "at_r_query_job");
	depth++;

	prs_align(ps);
	prs_uint32("ptr_info", ps, depth, &(r_q->ptr_info));
	if (r_q->ptr_info != 0)
	{
		at_io_job_info("", &(r_q->info), ps, depth);
		smb_io_unistr2("", &(r_q->command), r_q->info.ptr_command, ps, depth);
	}

	prs_align(ps);
	prs_uint32("status", ps, depth, &(r_q->status));
}