summaryrefslogtreecommitdiff
path: root/daemon/smblib/smblib-api.c
blob: f74e5fda7a6bbc06560407401aea6b9d3fed8b7c (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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
/* UNIX SMBlib NetBIOS implementation

   Version 1.0
   SMB API Calls ...

   Copyright (C) Richard Sharpe 1996

*/

/*
   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 "smblib-priv.h"
#include "../rfcnb/rfcnb.h"

SMB_Tree_Handle SMBapi_Tree = NULL;

/* Send an api request to the \\server\IPC$ tree, with a \PIPE\LANMAN api  */
/* request to change the user's password                                   */

#define SMB_LMAPI_SLOT "\\PIPE\\LANMAN"
#define SMB_LMAPI_SUPW_DESC "zb16b16WW"

int SMBapi_NetUserPasswordSet(SMB_Tree_Handle tree, char *user,
			      char *oldpass, char *newpass, int *apiStatus)

{ struct RFCNB_Pkt *pkt;
  int param_len, i, pkt_len, pad_api_name = FALSE;
  char *p;

  /* Get a packet, we need one with space for a transact plus. The calc   */
  /* below lays it all out as it is, including the empty string after the */
  /* descriptor and before the username                                   */

  param_len = 2 + strlen(SMB_LMAPI_SUPW_DESC) + 1 +
              1 /* for empty string :-) */ + strlen(user) +
	      1 + 16 + 16 + 2 + 2;

  /* We have no setup words, wo we don't account for them */

  pkt_len = SMB_trans_len + 2 /* for bcc */ + strlen(SMB_LMAPI_SLOT) + 1;

  /* Pad things onto a word boundary ... */

  if (pkt_len & 0x0001) {
    pkt_len = pkt_len + 1;
    pad_api_name = TRUE;
  }


  pkt_len = pkt_len + param_len;

  /* Now allocate space for the packet, build it and send it */

  pkt = (struct RFCNB_Pkt *)RFCNB_Alloc_Pkt(pkt_len);

  if (pkt == NULL) {

    SMBlib_errno = SMBlibE_NoSpace;
    return(SMBlibE_BAD); /* Should handle the error */

  }

  bzero(SMB_Hdr(pkt), SMB_trans_len);
  SIVAL(SMB_Hdr(pkt), SMB_hdr_idf_offset, SMB_DEF_IDF);  /* Plunk in IDF */
  *(SMB_Hdr(pkt) + SMB_hdr_com_offset) = SMBtrans;
  SSVAL(SMB_Hdr(pkt), SMB_hdr_pid_offset, tree -> con -> pid);
  SSVAL(SMB_Hdr(pkt), SMB_hdr_tid_offset, tree -> tid);
  SSVAL(SMB_Hdr(pkt), SMB_hdr_mid_offset, tree -> con -> mid);
  SSVAL(SMB_Hdr(pkt), SMB_hdr_uid_offset, tree -> con -> uid);
  *(SMB_Hdr(pkt) + SMB_hdr_wct_offset) = 14;

  SSVAL(SMB_Hdr(pkt), SMB_trans_tpc_offset, param_len);
  SSVAL(SMB_Hdr(pkt), SMB_trans_tdc_offset, 0);
  SSVAL(SMB_Hdr(pkt), SMB_trans_mpc_offset, 4);
  SSVAL(SMB_Hdr(pkt), SMB_trans_mdc_offset, 0);
  SSVAL(SMB_Hdr(pkt), SMB_trans_msc_offset, 0);
  SSVAL(SMB_Hdr(pkt), SMB_trans_flg_offset, 0);
  SIVAL(SMB_Hdr(pkt), SMB_trans_tmo_offset, 5000);
  SSVAL(SMB_Hdr(pkt), SMB_trans_pbc_offset, param_len);
  SSVAL(SMB_Hdr(pkt), SMB_trans_pbo_offset, SMB_trans_len + 2 +
	                                    strlen(SMB_LMAPI_SLOT) + 1);
  SSVAL(SMB_Hdr(pkt), SMB_trans_dbc_offset, 0);
  SSVAL(SMB_Hdr(pkt), SMB_trans_dbo_offset, 0);

  /* Now put in the bcc and the rest of the info ... */

  SSVAL(SMB_Hdr(pkt), SMB_trans_len, param_len + strlen(SMB_LMAPI_SLOT) + 1);

  p = SMB_Hdr(pkt) + SMB_trans_len + 2;  /* Skip the BCC and ect */

  strcpy(p, SMB_LMAPI_SLOT);
  p = p + strlen(SMB_LMAPI_SLOT) + 1;

  if (pad_api_name == TRUE)   /* Pad if we need to */
    p = p + 1;

/*  SSVAL(p, 0, 65000);  /* Check the result */
  SSVAL(p, 0, SMB_LMapi_UserPasswordSet);  /* The api call */

  p = p + 2;

  strcpy(p, SMB_LMAPI_SUPW_DESC);          /* Copy in the param desc */

  p = p + strlen(SMB_LMAPI_SUPW_DESC) + 1;

  *p = 0;                                  /* Stick in that null string */
  p = p + 1;

  strcpy(p, user);

  p = p + strlen(user) + 1;

  strncpy(p, oldpass, 16);

  p = p + 16;

  strncpy(p, newpass, 16);

  p = p + 16;

  SSVAL(p, 0, 0);                 /* Seems to be zero always? */
  SSVAL(p, 2, strlen(newpass));   /* Length of new password ...*/

  /* Now send the lot and get a response ... */

  if (RFCNB_Send(tree -> con -> Trans_Connect, pkt, pkt_len) < 0){

#ifdef DEBUG
    fprintf(stderr, "Error sending Trans request\n");
#endif

    RFCNB_Free_Pkt(pkt);
    SMBlib_errno = SMBlibE_SendFailed;
    return(SMBlibE_BAD);

  }

  /* Now get the response ... */

  if (RFCNB_Recv(tree -> con -> Trans_Connect, pkt, pkt_len) < 0) {

#ifdef DEBUG
    fprintf(stderr, "Error receiving response to Trans request\n");
#endif

    RFCNB_Free_Pkt(pkt);
    SMBlib_errno = SMBlibE_RecvFailed;
    return(SMBlibE_BAD);

  }

  /* Check out the response type ... */

  if (CVAL(SMB_Hdr(pkt), SMB_hdr_rcls_offset) != SMBC_SUCCESS) {  /* Process error */

#ifdef DEBUG
    fprintf(stderr, "SMB_trans failed with errorclass = %i, Error Code = %i\n",
	    CVAL(SMB_Hdr(pkt), SMB_hdr_rcls_offset),
	    SVAL(SMB_Hdr(pkt), SMB_hdr_err_offset));
#endif

    SMBlib_SMB_Error = IVAL(SMB_Hdr(pkt), SMB_hdr_rcls_offset);
    RFCNB_Free_Pkt(pkt);
    SMBlib_errno = SMBlibE_Remote;
    return(SMBlibE_BAD);

  }

  /* All ok, pass back the status */

  *apiStatus = SVAL(SMB_Hdr(pkt), SVAL(SMB_Hdr(pkt), SMB_transr_pbo_offset));
  RFCNB_Free_Pkt(pkt);

  return(0);

}

#define SMB_LMAPI_SUI_DESC "zWsTPWW"
#define SMB_LMAPI_SUI_DATA_DESC "B16"


/* Set user info ... specifically, password */

int SMBapi_NetSetUserInfo(SMB_Tree_Handle tree, char *user,
			  char *newpass, int *apiStatus)

{ struct RFCNB_Pkt *pkt;
  int param_len, i, pkt_len, data_len, pad_api_name = FALSE;
  int pad_params = FALSE;
  char *p;

  /* Get a packet, we need one with space for a transact plus. The calc   */
  /* below lays it all out as it is, including the empty string after the */
  /* descriptor and before the username                                   */

  param_len = 2 + strlen(SMB_LMAPI_SUI_DESC) + 1 +
              + strlen(SMB_LMAPI_SUI_DATA_DESC) + 1 + strlen(user) +
	      1 + 2 + 2 + 2 + 2;

  data_len = 16;

  /* We have no setup words, so we don't account for them */

  pkt_len = SMB_trans_len + 2 /* for bcc */ + strlen(SMB_LMAPI_SLOT) + 1;

  if (pkt_len & 0x0001) {   /* Pad to a WORD boundary */

    pad_api_name = TRUE;

  }

  if (param_len & 0x0001) { /* pad to a WORD boundary */

    pad_params = TRUE;

  }

  pkt_len = pkt_len + param_len + data_len;

  if (pad_api_name == TRUE) pkt_len = pkt_len + 1;
  if (pad_params == TRUE) pkt_len = pkt_len + 1;

  /* Now allocate space for the packet, build it and send it */

  pkt = (struct RFCNB_Pkt *)RFCNB_Alloc_Pkt(pkt_len);

  if (pkt == NULL) {

    SMBlib_errno = SMBlibE_NoSpace;
    return(SMBlibE_BAD); /* Should handle the error */

  }

  bzero(SMB_Hdr(pkt), SMB_trans_len);
  SIVAL(SMB_Hdr(pkt), SMB_hdr_idf_offset, SMB_DEF_IDF);  /* Plunk in IDF */
  *(SMB_Hdr(pkt) + SMB_hdr_com_offset) = SMBtrans;
  SSVAL(SMB_Hdr(pkt), SMB_hdr_pid_offset, tree -> con -> pid);
  SSVAL(SMB_Hdr(pkt), SMB_hdr_tid_offset, tree -> tid);
  SSVAL(SMB_Hdr(pkt), SMB_hdr_mid_offset, tree -> con -> mid);
  SSVAL(SMB_Hdr(pkt), SMB_hdr_uid_offset, tree -> con -> uid);
  *(SMB_Hdr(pkt) + SMB_hdr_wct_offset) = 14;

  SSVAL(SMB_Hdr(pkt), SMB_trans_tpc_offset, param_len);
  SSVAL(SMB_Hdr(pkt), SMB_trans_tdc_offset, data_len);
  SSVAL(SMB_Hdr(pkt), SMB_trans_mpc_offset, 4);
  SSVAL(SMB_Hdr(pkt), SMB_trans_mdc_offset, 0);
  SSVAL(SMB_Hdr(pkt), SMB_trans_msc_offset, 0);
  SSVAL(SMB_Hdr(pkt), SMB_trans_flg_offset, 0);
  SIVAL(SMB_Hdr(pkt), SMB_trans_tmo_offset, 5000);
  SSVAL(SMB_Hdr(pkt), SMB_trans_pbc_offset, param_len);
  SSVAL(SMB_Hdr(pkt), SMB_trans_pbo_offset, SMB_trans_len + 2 +
	                                    strlen(SMB_LMAPI_SLOT) + 1);
  SSVAL(SMB_Hdr(pkt), SMB_trans_dbc_offset, data_len);
  SSVAL(SMB_Hdr(pkt), SMB_trans_dbo_offset, pkt_len - data_len);

  /* Now put in the bcc and the rest of the info ... */

  SSVAL(SMB_Hdr(pkt), SMB_trans_len, param_len + strlen(SMB_LMAPI_SLOT) +
	                             1 + data_len);

  p = SMB_Hdr(pkt) + SMB_trans_len + 2;  /* Skip the BCC and ect */

  strcpy(p, SMB_LMAPI_SLOT);
  p = p + strlen(SMB_LMAPI_SLOT) + 1;

  if (pad_api_name == TRUE)     /* Pad to a word boundary */
    p = p + 1;

/*  SSVAL(p, 0, 65000);  /* Check the result */
  SSVAL(p, 0, SMB_LMapi_SetUserInfo);  /* The api call */

  p = p + 2;

  strcpy(p, SMB_LMAPI_SUI_DESC);          /* Copy in the param desc */

  p = p + strlen(SMB_LMAPI_SUI_DESC) + 1;

  strcpy(p, SMB_LMAPI_SUI_DATA_DESC);     /* Copy in second descriptor */

  p = p + strlen(SMB_LMAPI_SUI_DATA_DESC) + 1;

  strcpy(p, user);

  p = p + strlen(user) + 1;

  SSVAL(p, 0, 1);                  /* Claim that we have a level 1 struct ? */

  p = p + 2;

  SSVAL(p, 0, 3);                 /* Set the password */
  SSVAL(p, 2, 1);                 /* Seems to be one ... */
  SSVAL(p, 4, strlen(newpass));   /* Length of new password ...*/

  /* Now copy the data in ... */

  p = p + 6;

  if (pad_params == TRUE)
    p = p + 1;

  strcpy(p, newpass);

  /* Now send the lot and get a response ... */

  if (RFCNB_Send(tree -> con -> Trans_Connect, pkt, pkt_len) < 0){

#ifdef DEBUG
    fprintf(stderr, "Error sending Trans SetUserInfo request\n");
#endif

    RFCNB_Free_Pkt(pkt);
    SMBlib_errno = SMBlibE_SendFailed;
    return(SMBlibE_BAD);

  }

  /* Now get the response ... */

  if (RFCNB_Recv(tree -> con -> Trans_Connect, pkt, pkt_len) < 0) {

#ifdef DEBUG
    fprintf(stderr, "Error receiving response to Trans SetUserInfo request\n");
#endif

    RFCNB_Free_Pkt(pkt);
    SMBlib_errno = SMBlibE_RecvFailed;
    return(SMBlibE_BAD);

  }

  /* Check out the response type ... */

  if (CVAL(SMB_Hdr(pkt), SMB_hdr_rcls_offset) != SMBC_SUCCESS) {  /* Process error */

#ifdef DEBUG
    fprintf(stderr, "SMB_trans SetUserInfo failed with errorclass = %i, Error Code = %i\n",
	    CVAL(SMB_Hdr(pkt), SMB_hdr_rcls_offset),
	    SVAL(SMB_Hdr(pkt), SMB_hdr_err_offset));
#endif

    SMBlib_SMB_Error = IVAL(SMB_Hdr(pkt), SMB_hdr_rcls_offset);
    RFCNB_Free_Pkt(pkt);
    SMBlib_errno = SMBlibE_Remote;
    return(SMBlibE_BAD);

  }

  /* All ok, pass back the status */

  *apiStatus = SVAL(SMB_Hdr(pkt), SVAL(SMB_Hdr(pkt), SMB_transr_pbo_offset));
  RFCNB_Free_Pkt(pkt);

  return(0);

}

/* List all the shares available on a server */

int SMBapi_NetShareEnum(SMB_Tree_Handle tree, char *enum_buf, int bufsiz,
			int *shares_returned, int *shares_total)

{


}