smb.c 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. * Copyright (C) Bill Nagel <wnagel@tycoint.com>, Exacq Technologies
  10. *
  11. * This software is licensed as described in the file COPYING, which
  12. * you should have received as part of this distribution. The terms
  13. * are also available at https://curl.se/docs/copyright.html.
  14. *
  15. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  16. * copies of the Software, and permit persons to whom the Software is
  17. * furnished to do so, under the terms of the COPYING file.
  18. *
  19. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  20. * KIND, either express or implied.
  21. *
  22. * SPDX-License-Identifier: curl
  23. *
  24. ***************************************************************************/
  25. #include "curl_setup.h"
  26. #if !defined(CURL_DISABLE_SMB) && defined(USE_CURL_NTLM_CORE)
  27. #ifdef _WIN32
  28. #define getpid GetCurrentProcessId
  29. #endif
  30. #include "smb.h"
  31. #include "urldata.h"
  32. #include "sendf.h"
  33. #include "multiif.h"
  34. #include "cfilters.h"
  35. #include "connect.h"
  36. #include "progress.h"
  37. #include "transfer.h"
  38. #include "vtls/vtls.h"
  39. #include "curl_ntlm_core.h"
  40. #include "escape.h"
  41. #include "curl_endian.h"
  42. /* The last #include files should be: */
  43. #include "curl_memory.h"
  44. #include "memdebug.h"
  45. /*
  46. * Definitions for SMB protocol data structures
  47. */
  48. #if defined(_MSC_VER) || defined(__ILEC400__)
  49. # define PACK
  50. # pragma pack(push)
  51. # pragma pack(1)
  52. #elif defined(__GNUC__)
  53. # define PACK __attribute__((packed))
  54. #else
  55. # define PACK
  56. #endif
  57. #define SMB_COM_CLOSE 0x04
  58. #define SMB_COM_READ_ANDX 0x2e
  59. #define SMB_COM_WRITE_ANDX 0x2f
  60. #define SMB_COM_TREE_DISCONNECT 0x71
  61. #define SMB_COM_NEGOTIATE 0x72
  62. #define SMB_COM_SETUP_ANDX 0x73
  63. #define SMB_COM_TREE_CONNECT_ANDX 0x75
  64. #define SMB_COM_NT_CREATE_ANDX 0xa2
  65. #define SMB_COM_NO_ANDX_COMMAND 0xff
  66. #define SMB_WC_CLOSE 0x03
  67. #define SMB_WC_READ_ANDX 0x0c
  68. #define SMB_WC_WRITE_ANDX 0x0e
  69. #define SMB_WC_SETUP_ANDX 0x0d
  70. #define SMB_WC_TREE_CONNECT_ANDX 0x04
  71. #define SMB_WC_NT_CREATE_ANDX 0x18
  72. #define SMB_FLAGS_CANONICAL_PATHNAMES 0x10
  73. #define SMB_FLAGS_CASELESS_PATHNAMES 0x08
  74. #define SMB_FLAGS2_UNICODE_STRINGS 0x8000
  75. #define SMB_FLAGS2_IS_LONG_NAME 0x0040
  76. #define SMB_FLAGS2_KNOWS_LONG_NAME 0x0001
  77. #define SMB_CAP_LARGE_FILES 0x08
  78. #define SMB_GENERIC_WRITE 0x40000000
  79. #define SMB_GENERIC_READ 0x80000000
  80. #define SMB_FILE_SHARE_ALL 0x07
  81. #define SMB_FILE_OPEN 0x01
  82. #define SMB_FILE_OVERWRITE_IF 0x05
  83. #define SMB_ERR_NOACCESS 0x00050001
  84. struct smb_header {
  85. unsigned char nbt_type;
  86. unsigned char nbt_flags;
  87. unsigned short nbt_length;
  88. unsigned char magic[4];
  89. unsigned char command;
  90. unsigned int status;
  91. unsigned char flags;
  92. unsigned short flags2;
  93. unsigned short pid_high;
  94. unsigned char signature[8];
  95. unsigned short pad;
  96. unsigned short tid;
  97. unsigned short pid;
  98. unsigned short uid;
  99. unsigned short mid;
  100. } PACK;
  101. struct smb_negotiate_response {
  102. struct smb_header h;
  103. unsigned char word_count;
  104. unsigned short dialect_index;
  105. unsigned char security_mode;
  106. unsigned short max_mpx_count;
  107. unsigned short max_number_vcs;
  108. unsigned int max_buffer_size;
  109. unsigned int max_raw_size;
  110. unsigned int session_key;
  111. unsigned int capabilities;
  112. unsigned int system_time_low;
  113. unsigned int system_time_high;
  114. unsigned short server_time_zone;
  115. unsigned char encryption_key_length;
  116. unsigned short byte_count;
  117. char bytes[1];
  118. } PACK;
  119. struct andx {
  120. unsigned char command;
  121. unsigned char pad;
  122. unsigned short offset;
  123. } PACK;
  124. struct smb_setup {
  125. unsigned char word_count;
  126. struct andx andx;
  127. unsigned short max_buffer_size;
  128. unsigned short max_mpx_count;
  129. unsigned short vc_number;
  130. unsigned int session_key;
  131. unsigned short lengths[2];
  132. unsigned int pad;
  133. unsigned int capabilities;
  134. unsigned short byte_count;
  135. char bytes[1024];
  136. } PACK;
  137. struct smb_tree_connect {
  138. unsigned char word_count;
  139. struct andx andx;
  140. unsigned short flags;
  141. unsigned short pw_len;
  142. unsigned short byte_count;
  143. char bytes[1024];
  144. } PACK;
  145. struct smb_nt_create {
  146. unsigned char word_count;
  147. struct andx andx;
  148. unsigned char pad;
  149. unsigned short name_length;
  150. unsigned int flags;
  151. unsigned int root_fid;
  152. unsigned int access;
  153. curl_off_t allocation_size;
  154. unsigned int ext_file_attributes;
  155. unsigned int share_access;
  156. unsigned int create_disposition;
  157. unsigned int create_options;
  158. unsigned int impersonation_level;
  159. unsigned char security_flags;
  160. unsigned short byte_count;
  161. char bytes[1024];
  162. } PACK;
  163. struct smb_nt_create_response {
  164. struct smb_header h;
  165. unsigned char word_count;
  166. struct andx andx;
  167. unsigned char op_lock_level;
  168. unsigned short fid;
  169. unsigned int create_disposition;
  170. curl_off_t create_time;
  171. curl_off_t last_access_time;
  172. curl_off_t last_write_time;
  173. curl_off_t last_change_time;
  174. unsigned int ext_file_attributes;
  175. curl_off_t allocation_size;
  176. curl_off_t end_of_file;
  177. } PACK;
  178. struct smb_read {
  179. unsigned char word_count;
  180. struct andx andx;
  181. unsigned short fid;
  182. unsigned int offset;
  183. unsigned short max_bytes;
  184. unsigned short min_bytes;
  185. unsigned int timeout;
  186. unsigned short remaining;
  187. unsigned int offset_high;
  188. unsigned short byte_count;
  189. } PACK;
  190. struct smb_write {
  191. struct smb_header h;
  192. unsigned char word_count;
  193. struct andx andx;
  194. unsigned short fid;
  195. unsigned int offset;
  196. unsigned int timeout;
  197. unsigned short write_mode;
  198. unsigned short remaining;
  199. unsigned short pad;
  200. unsigned short data_length;
  201. unsigned short data_offset;
  202. unsigned int offset_high;
  203. unsigned short byte_count;
  204. unsigned char pad2;
  205. } PACK;
  206. struct smb_close {
  207. unsigned char word_count;
  208. unsigned short fid;
  209. unsigned int last_mtime;
  210. unsigned short byte_count;
  211. } PACK;
  212. struct smb_tree_disconnect {
  213. unsigned char word_count;
  214. unsigned short byte_count;
  215. } PACK;
  216. #if defined(_MSC_VER) || defined(__ILEC400__)
  217. # pragma pack(pop)
  218. #endif
  219. /* Local API functions */
  220. static CURLcode smb_setup_connection(struct Curl_easy *data,
  221. struct connectdata *conn);
  222. static CURLcode smb_connect(struct Curl_easy *data, bool *done);
  223. static CURLcode smb_connection_state(struct Curl_easy *data, bool *done);
  224. static CURLcode smb_do(struct Curl_easy *data, bool *done);
  225. static CURLcode smb_request_state(struct Curl_easy *data, bool *done);
  226. static CURLcode smb_disconnect(struct Curl_easy *data,
  227. struct connectdata *conn, bool dead);
  228. static int smb_getsock(struct Curl_easy *data, struct connectdata *conn,
  229. curl_socket_t *socks);
  230. static CURLcode smb_parse_url_path(struct Curl_easy *data,
  231. struct connectdata *conn);
  232. /*
  233. * SMB handler interface
  234. */
  235. const struct Curl_handler Curl_handler_smb = {
  236. "SMB", /* scheme */
  237. smb_setup_connection, /* setup_connection */
  238. smb_do, /* do_it */
  239. ZERO_NULL, /* done */
  240. ZERO_NULL, /* do_more */
  241. smb_connect, /* connect_it */
  242. smb_connection_state, /* connecting */
  243. smb_request_state, /* doing */
  244. smb_getsock, /* proto_getsock */
  245. smb_getsock, /* doing_getsock */
  246. ZERO_NULL, /* domore_getsock */
  247. ZERO_NULL, /* perform_getsock */
  248. smb_disconnect, /* disconnect */
  249. ZERO_NULL, /* write_resp */
  250. ZERO_NULL, /* write_resp_hd */
  251. ZERO_NULL, /* connection_check */
  252. ZERO_NULL, /* attach connection */
  253. PORT_SMB, /* defport */
  254. CURLPROTO_SMB, /* protocol */
  255. CURLPROTO_SMB, /* family */
  256. PROTOPT_NONE /* flags */
  257. };
  258. #ifdef USE_SSL
  259. /*
  260. * SMBS handler interface
  261. */
  262. const struct Curl_handler Curl_handler_smbs = {
  263. "SMBS", /* scheme */
  264. smb_setup_connection, /* setup_connection */
  265. smb_do, /* do_it */
  266. ZERO_NULL, /* done */
  267. ZERO_NULL, /* do_more */
  268. smb_connect, /* connect_it */
  269. smb_connection_state, /* connecting */
  270. smb_request_state, /* doing */
  271. smb_getsock, /* proto_getsock */
  272. smb_getsock, /* doing_getsock */
  273. ZERO_NULL, /* domore_getsock */
  274. ZERO_NULL, /* perform_getsock */
  275. smb_disconnect, /* disconnect */
  276. ZERO_NULL, /* write_resp */
  277. ZERO_NULL, /* write_resp_hd */
  278. ZERO_NULL, /* connection_check */
  279. ZERO_NULL, /* attach connection */
  280. PORT_SMBS, /* defport */
  281. CURLPROTO_SMBS, /* protocol */
  282. CURLPROTO_SMB, /* family */
  283. PROTOPT_SSL /* flags */
  284. };
  285. #endif
  286. #define MAX_PAYLOAD_SIZE 0x8000
  287. #define MAX_MESSAGE_SIZE (MAX_PAYLOAD_SIZE + 0x1000)
  288. #define CLIENTNAME "curl"
  289. #define SERVICENAME "?????"
  290. /* Append a string to an SMB message */
  291. #define MSGCAT(str) \
  292. do { \
  293. strcpy(p, (str)); \
  294. p += strlen(str); \
  295. } while(0)
  296. /* Append a null-terminated string to an SMB message */
  297. #define MSGCATNULL(str) \
  298. do { \
  299. strcpy(p, (str)); \
  300. p += strlen(str) + 1; \
  301. } while(0)
  302. /* SMB is mostly little endian */
  303. #if (defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) || \
  304. defined(__OS400__)
  305. static unsigned short smb_swap16(unsigned short x)
  306. {
  307. return (unsigned short) ((x << 8) | ((x >> 8) & 0xff));
  308. }
  309. static unsigned int smb_swap32(unsigned int x)
  310. {
  311. return (x << 24) | ((x << 8) & 0xff0000) | ((x >> 8) & 0xff00) |
  312. ((x >> 24) & 0xff);
  313. }
  314. static curl_off_t smb_swap64(curl_off_t x)
  315. {
  316. return ((curl_off_t) smb_swap32((unsigned int) x) << 32) |
  317. smb_swap32((unsigned int) (x >> 32));
  318. }
  319. #else
  320. # define smb_swap16(x) (x)
  321. # define smb_swap32(x) (x)
  322. # define smb_swap64(x) (x)
  323. #endif
  324. /* SMB request state */
  325. enum smb_req_state {
  326. SMB_REQUESTING,
  327. SMB_TREE_CONNECT,
  328. SMB_OPEN,
  329. SMB_DOWNLOAD,
  330. SMB_UPLOAD,
  331. SMB_CLOSE,
  332. SMB_TREE_DISCONNECT,
  333. SMB_DONE
  334. };
  335. /* SMB request data */
  336. struct smb_request {
  337. enum smb_req_state state;
  338. char *path;
  339. unsigned short tid; /* Even if we connect to the same tree as another */
  340. unsigned short fid; /* request, the tid will be different */
  341. CURLcode result;
  342. };
  343. static void conn_state(struct Curl_easy *data, enum smb_conn_state newstate)
  344. {
  345. struct smb_conn *smbc = &data->conn->proto.smbc;
  346. #if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
  347. /* For debug purposes */
  348. static const char * const names[] = {
  349. "SMB_NOT_CONNECTED",
  350. "SMB_CONNECTING",
  351. "SMB_NEGOTIATE",
  352. "SMB_SETUP",
  353. "SMB_CONNECTED",
  354. /* LAST */
  355. };
  356. if(smbc->state != newstate)
  357. infof(data, "SMB conn %p state change from %s to %s",
  358. (void *)smbc, names[smbc->state], names[newstate]);
  359. #endif
  360. smbc->state = newstate;
  361. }
  362. static void request_state(struct Curl_easy *data,
  363. enum smb_req_state newstate)
  364. {
  365. struct smb_request *req = data->req.p.smb;
  366. #if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
  367. /* For debug purposes */
  368. static const char * const names[] = {
  369. "SMB_REQUESTING",
  370. "SMB_TREE_CONNECT",
  371. "SMB_OPEN",
  372. "SMB_DOWNLOAD",
  373. "SMB_UPLOAD",
  374. "SMB_CLOSE",
  375. "SMB_TREE_DISCONNECT",
  376. "SMB_DONE",
  377. /* LAST */
  378. };
  379. if(req->state != newstate)
  380. infof(data, "SMB request %p state change from %s to %s",
  381. (void *)req, names[req->state], names[newstate]);
  382. #endif
  383. req->state = newstate;
  384. }
  385. /* this should setup things in the connection, not in the easy
  386. handle */
  387. static CURLcode smb_setup_connection(struct Curl_easy *data,
  388. struct connectdata *conn)
  389. {
  390. struct smb_request *req;
  391. /* Initialize the request state */
  392. data->req.p.smb = req = calloc(1, sizeof(struct smb_request));
  393. if(!req)
  394. return CURLE_OUT_OF_MEMORY;
  395. /* Parse the URL path */
  396. return smb_parse_url_path(data, conn);
  397. }
  398. static CURLcode smb_connect(struct Curl_easy *data, bool *done)
  399. {
  400. struct connectdata *conn = data->conn;
  401. struct smb_conn *smbc = &conn->proto.smbc;
  402. char *slash;
  403. (void) done;
  404. /* Check we have a username and password to authenticate with */
  405. if(!data->state.aptr.user)
  406. return CURLE_LOGIN_DENIED;
  407. /* Initialize the connection state */
  408. smbc->state = SMB_CONNECTING;
  409. smbc->recv_buf = malloc(MAX_MESSAGE_SIZE);
  410. if(!smbc->recv_buf)
  411. return CURLE_OUT_OF_MEMORY;
  412. smbc->send_buf = malloc(MAX_MESSAGE_SIZE);
  413. if(!smbc->send_buf)
  414. return CURLE_OUT_OF_MEMORY;
  415. /* Multiple requests are allowed with this connection */
  416. connkeep(conn, "SMB default");
  417. /* Parse the username, domain, and password */
  418. slash = strchr(conn->user, '/');
  419. if(!slash)
  420. slash = strchr(conn->user, '\\');
  421. if(slash) {
  422. smbc->user = slash + 1;
  423. smbc->domain = strdup(conn->user);
  424. if(!smbc->domain)
  425. return CURLE_OUT_OF_MEMORY;
  426. smbc->domain[slash - conn->user] = 0;
  427. }
  428. else {
  429. smbc->user = conn->user;
  430. smbc->domain = strdup(conn->host.name);
  431. if(!smbc->domain)
  432. return CURLE_OUT_OF_MEMORY;
  433. }
  434. return CURLE_OK;
  435. }
  436. static CURLcode smb_recv_message(struct Curl_easy *data, void **msg)
  437. {
  438. struct connectdata *conn = data->conn;
  439. struct smb_conn *smbc = &conn->proto.smbc;
  440. char *buf = smbc->recv_buf;
  441. ssize_t bytes_read;
  442. size_t nbt_size;
  443. size_t msg_size;
  444. size_t len = MAX_MESSAGE_SIZE - smbc->got;
  445. CURLcode result;
  446. result = Curl_xfer_recv(data, buf + smbc->got, len, &bytes_read);
  447. if(result)
  448. return result;
  449. if(!bytes_read)
  450. return CURLE_OK;
  451. smbc->got += bytes_read;
  452. /* Check for a 32-bit nbt header */
  453. if(smbc->got < sizeof(unsigned int))
  454. return CURLE_OK;
  455. nbt_size = Curl_read16_be((const unsigned char *)
  456. (buf + sizeof(unsigned short))) +
  457. sizeof(unsigned int);
  458. if(smbc->got < nbt_size)
  459. return CURLE_OK;
  460. msg_size = sizeof(struct smb_header);
  461. if(nbt_size >= msg_size + 1) {
  462. /* Add the word count */
  463. msg_size += 1 + ((unsigned char) buf[msg_size]) * sizeof(unsigned short);
  464. if(nbt_size >= msg_size + sizeof(unsigned short)) {
  465. /* Add the byte count */
  466. msg_size += sizeof(unsigned short) +
  467. Curl_read16_le((const unsigned char *)&buf[msg_size]);
  468. if(nbt_size < msg_size)
  469. return CURLE_READ_ERROR;
  470. }
  471. }
  472. *msg = buf;
  473. return CURLE_OK;
  474. }
  475. static void smb_pop_message(struct connectdata *conn)
  476. {
  477. struct smb_conn *smbc = &conn->proto.smbc;
  478. smbc->got = 0;
  479. }
  480. static void smb_format_message(struct Curl_easy *data, struct smb_header *h,
  481. unsigned char cmd, size_t len)
  482. {
  483. struct connectdata *conn = data->conn;
  484. struct smb_conn *smbc = &conn->proto.smbc;
  485. struct smb_request *req = data->req.p.smb;
  486. unsigned int pid;
  487. memset(h, 0, sizeof(*h));
  488. h->nbt_length = htons((unsigned short) (sizeof(*h) - sizeof(unsigned int) +
  489. len));
  490. memcpy((char *)h->magic, "\xffSMB", 4);
  491. h->command = cmd;
  492. h->flags = SMB_FLAGS_CANONICAL_PATHNAMES | SMB_FLAGS_CASELESS_PATHNAMES;
  493. h->flags2 = smb_swap16(SMB_FLAGS2_IS_LONG_NAME | SMB_FLAGS2_KNOWS_LONG_NAME);
  494. h->uid = smb_swap16(smbc->uid);
  495. h->tid = smb_swap16(req->tid);
  496. pid = getpid();
  497. h->pid_high = smb_swap16((unsigned short)(pid >> 16));
  498. h->pid = smb_swap16((unsigned short) pid);
  499. }
  500. static CURLcode smb_send(struct Curl_easy *data, size_t len,
  501. size_t upload_size)
  502. {
  503. struct connectdata *conn = data->conn;
  504. struct smb_conn *smbc = &conn->proto.smbc;
  505. size_t bytes_written;
  506. CURLcode result;
  507. result = Curl_xfer_send(data, smbc->send_buf, len, &bytes_written);
  508. if(result)
  509. return result;
  510. if(bytes_written != len) {
  511. smbc->send_size = len;
  512. smbc->sent = bytes_written;
  513. }
  514. smbc->upload_size = upload_size;
  515. return CURLE_OK;
  516. }
  517. static CURLcode smb_flush(struct Curl_easy *data)
  518. {
  519. struct connectdata *conn = data->conn;
  520. struct smb_conn *smbc = &conn->proto.smbc;
  521. size_t bytes_written;
  522. size_t len = smbc->send_size - smbc->sent;
  523. CURLcode result;
  524. if(!smbc->send_size)
  525. return CURLE_OK;
  526. result = Curl_xfer_send(data, smbc->send_buf + smbc->sent, len,
  527. &bytes_written);
  528. if(result)
  529. return result;
  530. if(bytes_written != len)
  531. smbc->sent += bytes_written;
  532. else
  533. smbc->send_size = 0;
  534. return CURLE_OK;
  535. }
  536. static CURLcode smb_send_message(struct Curl_easy *data, unsigned char cmd,
  537. const void *msg, size_t msg_len)
  538. {
  539. struct connectdata *conn = data->conn;
  540. struct smb_conn *smbc = &conn->proto.smbc;
  541. smb_format_message(data, (struct smb_header *)smbc->send_buf,
  542. cmd, msg_len);
  543. DEBUGASSERT((sizeof(struct smb_header) + msg_len) <= MAX_MESSAGE_SIZE);
  544. memcpy(smbc->send_buf + sizeof(struct smb_header), msg, msg_len);
  545. return smb_send(data, sizeof(struct smb_header) + msg_len, 0);
  546. }
  547. static CURLcode smb_send_negotiate(struct Curl_easy *data)
  548. {
  549. const char *msg = "\x00\x0c\x00\x02NT LM 0.12";
  550. return smb_send_message(data, SMB_COM_NEGOTIATE, msg, 15);
  551. }
  552. static CURLcode smb_send_setup(struct Curl_easy *data)
  553. {
  554. struct connectdata *conn = data->conn;
  555. struct smb_conn *smbc = &conn->proto.smbc;
  556. struct smb_setup msg;
  557. char *p = msg.bytes;
  558. unsigned char lm_hash[21];
  559. unsigned char lm[24];
  560. unsigned char nt_hash[21];
  561. unsigned char nt[24];
  562. size_t byte_count = sizeof(lm) + sizeof(nt);
  563. byte_count += strlen(smbc->user) + strlen(smbc->domain);
  564. byte_count += strlen(OS) + strlen(CLIENTNAME) + 4; /* 4 null chars */
  565. if(byte_count > sizeof(msg.bytes))
  566. return CURLE_FILESIZE_EXCEEDED;
  567. Curl_ntlm_core_mk_lm_hash(conn->passwd, lm_hash);
  568. Curl_ntlm_core_lm_resp(lm_hash, smbc->challenge, lm);
  569. Curl_ntlm_core_mk_nt_hash(conn->passwd, nt_hash);
  570. Curl_ntlm_core_lm_resp(nt_hash, smbc->challenge, nt);
  571. memset(&msg, 0, sizeof(msg));
  572. msg.word_count = SMB_WC_SETUP_ANDX;
  573. msg.andx.command = SMB_COM_NO_ANDX_COMMAND;
  574. msg.max_buffer_size = smb_swap16(MAX_MESSAGE_SIZE);
  575. msg.max_mpx_count = smb_swap16(1);
  576. msg.vc_number = smb_swap16(1);
  577. msg.session_key = smb_swap32(smbc->session_key);
  578. msg.capabilities = smb_swap32(SMB_CAP_LARGE_FILES);
  579. msg.lengths[0] = smb_swap16(sizeof(lm));
  580. msg.lengths[1] = smb_swap16(sizeof(nt));
  581. memcpy(p, lm, sizeof(lm));
  582. p += sizeof(lm);
  583. memcpy(p, nt, sizeof(nt));
  584. p += sizeof(nt);
  585. MSGCATNULL(smbc->user);
  586. MSGCATNULL(smbc->domain);
  587. MSGCATNULL(OS);
  588. MSGCATNULL(CLIENTNAME);
  589. byte_count = p - msg.bytes;
  590. msg.byte_count = smb_swap16((unsigned short)byte_count);
  591. return smb_send_message(data, SMB_COM_SETUP_ANDX, &msg,
  592. sizeof(msg) - sizeof(msg.bytes) + byte_count);
  593. }
  594. static CURLcode smb_send_tree_connect(struct Curl_easy *data)
  595. {
  596. struct smb_tree_connect msg;
  597. struct connectdata *conn = data->conn;
  598. struct smb_conn *smbc = &conn->proto.smbc;
  599. char *p = msg.bytes;
  600. size_t byte_count = strlen(conn->host.name) + strlen(smbc->share);
  601. byte_count += strlen(SERVICENAME) + 5; /* 2 nulls and 3 backslashes */
  602. if(byte_count > sizeof(msg.bytes))
  603. return CURLE_FILESIZE_EXCEEDED;
  604. memset(&msg, 0, sizeof(msg));
  605. msg.word_count = SMB_WC_TREE_CONNECT_ANDX;
  606. msg.andx.command = SMB_COM_NO_ANDX_COMMAND;
  607. msg.pw_len = 0;
  608. MSGCAT("\\\\");
  609. MSGCAT(conn->host.name);
  610. MSGCAT("\\");
  611. MSGCATNULL(smbc->share);
  612. MSGCATNULL(SERVICENAME); /* Match any type of service */
  613. byte_count = p - msg.bytes;
  614. msg.byte_count = smb_swap16((unsigned short)byte_count);
  615. return smb_send_message(data, SMB_COM_TREE_CONNECT_ANDX, &msg,
  616. sizeof(msg) - sizeof(msg.bytes) + byte_count);
  617. }
  618. static CURLcode smb_send_open(struct Curl_easy *data)
  619. {
  620. struct smb_request *req = data->req.p.smb;
  621. struct smb_nt_create msg;
  622. size_t byte_count;
  623. if((strlen(req->path) + 1) > sizeof(msg.bytes))
  624. return CURLE_FILESIZE_EXCEEDED;
  625. memset(&msg, 0, sizeof(msg));
  626. msg.word_count = SMB_WC_NT_CREATE_ANDX;
  627. msg.andx.command = SMB_COM_NO_ANDX_COMMAND;
  628. byte_count = strlen(req->path);
  629. msg.name_length = smb_swap16((unsigned short)byte_count);
  630. msg.share_access = smb_swap32(SMB_FILE_SHARE_ALL);
  631. if(data->state.upload) {
  632. msg.access = smb_swap32(SMB_GENERIC_READ | SMB_GENERIC_WRITE);
  633. msg.create_disposition = smb_swap32(SMB_FILE_OVERWRITE_IF);
  634. }
  635. else {
  636. msg.access = smb_swap32(SMB_GENERIC_READ);
  637. msg.create_disposition = smb_swap32(SMB_FILE_OPEN);
  638. }
  639. msg.byte_count = smb_swap16((unsigned short) ++byte_count);
  640. strcpy(msg.bytes, req->path);
  641. return smb_send_message(data, SMB_COM_NT_CREATE_ANDX, &msg,
  642. sizeof(msg) - sizeof(msg.bytes) + byte_count);
  643. }
  644. static CURLcode smb_send_close(struct Curl_easy *data)
  645. {
  646. struct smb_request *req = data->req.p.smb;
  647. struct smb_close msg;
  648. memset(&msg, 0, sizeof(msg));
  649. msg.word_count = SMB_WC_CLOSE;
  650. msg.fid = smb_swap16(req->fid);
  651. return smb_send_message(data, SMB_COM_CLOSE, &msg, sizeof(msg));
  652. }
  653. static CURLcode smb_send_tree_disconnect(struct Curl_easy *data)
  654. {
  655. struct smb_tree_disconnect msg;
  656. memset(&msg, 0, sizeof(msg));
  657. return smb_send_message(data, SMB_COM_TREE_DISCONNECT, &msg, sizeof(msg));
  658. }
  659. static CURLcode smb_send_read(struct Curl_easy *data)
  660. {
  661. struct smb_request *req = data->req.p.smb;
  662. curl_off_t offset = data->req.offset;
  663. struct smb_read msg;
  664. memset(&msg, 0, sizeof(msg));
  665. msg.word_count = SMB_WC_READ_ANDX;
  666. msg.andx.command = SMB_COM_NO_ANDX_COMMAND;
  667. msg.fid = smb_swap16(req->fid);
  668. msg.offset = smb_swap32((unsigned int) offset);
  669. msg.offset_high = smb_swap32((unsigned int) (offset >> 32));
  670. msg.min_bytes = smb_swap16(MAX_PAYLOAD_SIZE);
  671. msg.max_bytes = smb_swap16(MAX_PAYLOAD_SIZE);
  672. return smb_send_message(data, SMB_COM_READ_ANDX, &msg, sizeof(msg));
  673. }
  674. static CURLcode smb_send_write(struct Curl_easy *data)
  675. {
  676. struct connectdata *conn = data->conn;
  677. struct smb_conn *smbc = &conn->proto.smbc;
  678. struct smb_write *msg;
  679. struct smb_request *req = data->req.p.smb;
  680. curl_off_t offset = data->req.offset;
  681. curl_off_t upload_size = data->req.size - data->req.bytecount;
  682. msg = (struct smb_write *)smbc->send_buf;
  683. if(upload_size >= MAX_PAYLOAD_SIZE - 1) /* There is one byte of padding */
  684. upload_size = MAX_PAYLOAD_SIZE - 1;
  685. memset(msg, 0, sizeof(*msg));
  686. msg->word_count = SMB_WC_WRITE_ANDX;
  687. msg->andx.command = SMB_COM_NO_ANDX_COMMAND;
  688. msg->fid = smb_swap16(req->fid);
  689. msg->offset = smb_swap32((unsigned int) offset);
  690. msg->offset_high = smb_swap32((unsigned int) (offset >> 32));
  691. msg->data_length = smb_swap16((unsigned short) upload_size);
  692. msg->data_offset = smb_swap16(sizeof(*msg) - sizeof(unsigned int));
  693. msg->byte_count = smb_swap16((unsigned short) (upload_size + 1));
  694. smb_format_message(data, &msg->h, SMB_COM_WRITE_ANDX,
  695. sizeof(*msg) - sizeof(msg->h) + (size_t) upload_size);
  696. return smb_send(data, sizeof(*msg), (size_t) upload_size);
  697. }
  698. static CURLcode smb_send_and_recv(struct Curl_easy *data, void **msg)
  699. {
  700. struct connectdata *conn = data->conn;
  701. struct smb_conn *smbc = &conn->proto.smbc;
  702. CURLcode result;
  703. *msg = NULL; /* if it returns early */
  704. /* Check if there is data in the transfer buffer */
  705. if(!smbc->send_size && smbc->upload_size) {
  706. size_t nread = smbc->upload_size > (size_t)MAX_MESSAGE_SIZE ?
  707. (size_t)MAX_MESSAGE_SIZE : smbc->upload_size;
  708. bool eos;
  709. result = Curl_client_read(data, smbc->send_buf, nread, &nread, &eos);
  710. if(result && result != CURLE_AGAIN)
  711. return result;
  712. if(!nread)
  713. return CURLE_OK;
  714. smbc->upload_size -= nread;
  715. smbc->send_size = nread;
  716. smbc->sent = 0;
  717. }
  718. /* Check if there is data to send */
  719. if(smbc->send_size) {
  720. result = smb_flush(data);
  721. if(result)
  722. return result;
  723. }
  724. /* Check if there is still data to be sent */
  725. if(smbc->send_size || smbc->upload_size)
  726. return CURLE_AGAIN;
  727. return smb_recv_message(data, msg);
  728. }
  729. static CURLcode smb_connection_state(struct Curl_easy *data, bool *done)
  730. {
  731. struct connectdata *conn = data->conn;
  732. struct smb_conn *smbc = &conn->proto.smbc;
  733. struct smb_negotiate_response *nrsp;
  734. struct smb_header *h;
  735. CURLcode result;
  736. void *msg = NULL;
  737. if(smbc->state == SMB_CONNECTING) {
  738. #ifdef USE_SSL
  739. if((conn->handler->flags & PROTOPT_SSL)) {
  740. bool ssl_done = FALSE;
  741. result = Curl_conn_connect(data, FIRSTSOCKET, FALSE, &ssl_done);
  742. if(result && result != CURLE_AGAIN)
  743. return result;
  744. if(!ssl_done)
  745. return CURLE_OK;
  746. }
  747. #endif
  748. result = smb_send_negotiate(data);
  749. if(result) {
  750. connclose(conn, "SMB: failed to send negotiate message");
  751. return result;
  752. }
  753. conn_state(data, SMB_NEGOTIATE);
  754. }
  755. /* Send the previous message and check for a response */
  756. result = smb_send_and_recv(data, &msg);
  757. if(result && result != CURLE_AGAIN) {
  758. connclose(conn, "SMB: failed to communicate");
  759. return result;
  760. }
  761. if(!msg)
  762. return CURLE_OK;
  763. h = msg;
  764. switch(smbc->state) {
  765. case SMB_NEGOTIATE:
  766. if((smbc->got < sizeof(*nrsp) + sizeof(smbc->challenge) - 1) ||
  767. h->status) {
  768. connclose(conn, "SMB: negotiation failed");
  769. return CURLE_COULDNT_CONNECT;
  770. }
  771. nrsp = msg;
  772. memcpy(smbc->challenge, nrsp->bytes, sizeof(smbc->challenge));
  773. smbc->session_key = smb_swap32(nrsp->session_key);
  774. result = smb_send_setup(data);
  775. if(result) {
  776. connclose(conn, "SMB: failed to send setup message");
  777. return result;
  778. }
  779. conn_state(data, SMB_SETUP);
  780. break;
  781. case SMB_SETUP:
  782. if(h->status) {
  783. connclose(conn, "SMB: authentication failed");
  784. return CURLE_LOGIN_DENIED;
  785. }
  786. smbc->uid = smb_swap16(h->uid);
  787. conn_state(data, SMB_CONNECTED);
  788. *done = true;
  789. break;
  790. default:
  791. smb_pop_message(conn);
  792. return CURLE_OK; /* ignore */
  793. }
  794. smb_pop_message(conn);
  795. return CURLE_OK;
  796. }
  797. /*
  798. * Convert a timestamp from the Windows world (100 nsec units from 1 Jan 1601)
  799. * to Posix time. Cap the output to fit within a time_t.
  800. */
  801. static void get_posix_time(time_t *out, curl_off_t timestamp)
  802. {
  803. timestamp -= 116444736000000000;
  804. timestamp /= 10000000;
  805. #if SIZEOF_TIME_T < SIZEOF_CURL_OFF_T
  806. if(timestamp > TIME_T_MAX)
  807. *out = TIME_T_MAX;
  808. else if(timestamp < TIME_T_MIN)
  809. *out = TIME_T_MIN;
  810. else
  811. #endif
  812. *out = (time_t) timestamp;
  813. }
  814. static CURLcode smb_request_state(struct Curl_easy *data, bool *done)
  815. {
  816. struct connectdata *conn = data->conn;
  817. struct smb_request *req = data->req.p.smb;
  818. struct smb_header *h;
  819. struct smb_conn *smbc = &conn->proto.smbc;
  820. enum smb_req_state next_state = SMB_DONE;
  821. unsigned short len;
  822. unsigned short off;
  823. CURLcode result;
  824. void *msg = NULL;
  825. const struct smb_nt_create_response *smb_m;
  826. if(data->state.upload && (data->state.infilesize < 0)) {
  827. failf(data, "SMB upload needs to know the size up front");
  828. return CURLE_SEND_ERROR;
  829. }
  830. /* Start the request */
  831. if(req->state == SMB_REQUESTING) {
  832. result = smb_send_tree_connect(data);
  833. if(result) {
  834. connclose(conn, "SMB: failed to send tree connect message");
  835. return result;
  836. }
  837. request_state(data, SMB_TREE_CONNECT);
  838. }
  839. /* Send the previous message and check for a response */
  840. result = smb_send_and_recv(data, &msg);
  841. if(result && result != CURLE_AGAIN) {
  842. connclose(conn, "SMB: failed to communicate");
  843. return result;
  844. }
  845. if(!msg)
  846. return CURLE_OK;
  847. h = msg;
  848. switch(req->state) {
  849. case SMB_TREE_CONNECT:
  850. if(h->status) {
  851. req->result = CURLE_REMOTE_FILE_NOT_FOUND;
  852. if(h->status == smb_swap32(SMB_ERR_NOACCESS))
  853. req->result = CURLE_REMOTE_ACCESS_DENIED;
  854. break;
  855. }
  856. req->tid = smb_swap16(h->tid);
  857. next_state = SMB_OPEN;
  858. break;
  859. case SMB_OPEN:
  860. if(h->status || smbc->got < sizeof(struct smb_nt_create_response)) {
  861. req->result = CURLE_REMOTE_FILE_NOT_FOUND;
  862. if(h->status == smb_swap32(SMB_ERR_NOACCESS))
  863. req->result = CURLE_REMOTE_ACCESS_DENIED;
  864. next_state = SMB_TREE_DISCONNECT;
  865. break;
  866. }
  867. smb_m = (const struct smb_nt_create_response*) msg;
  868. req->fid = smb_swap16(smb_m->fid);
  869. data->req.offset = 0;
  870. if(data->state.upload) {
  871. data->req.size = data->state.infilesize;
  872. Curl_pgrsSetUploadSize(data, data->req.size);
  873. next_state = SMB_UPLOAD;
  874. }
  875. else {
  876. data->req.size = smb_swap64(smb_m->end_of_file);
  877. if(data->req.size < 0) {
  878. req->result = CURLE_WEIRD_SERVER_REPLY;
  879. next_state = SMB_CLOSE;
  880. }
  881. else {
  882. Curl_pgrsSetDownloadSize(data, data->req.size);
  883. if(data->set.get_filetime)
  884. get_posix_time(&data->info.filetime, smb_m->last_change_time);
  885. next_state = SMB_DOWNLOAD;
  886. }
  887. }
  888. break;
  889. case SMB_DOWNLOAD:
  890. if(h->status || smbc->got < sizeof(struct smb_header) + 14) {
  891. req->result = CURLE_RECV_ERROR;
  892. next_state = SMB_CLOSE;
  893. break;
  894. }
  895. len = Curl_read16_le(((const unsigned char *) msg) +
  896. sizeof(struct smb_header) + 11);
  897. off = Curl_read16_le(((const unsigned char *) msg) +
  898. sizeof(struct smb_header) + 13);
  899. if(len > 0) {
  900. if(off + sizeof(unsigned int) + len > smbc->got) {
  901. failf(data, "Invalid input packet");
  902. result = CURLE_RECV_ERROR;
  903. }
  904. else
  905. result = Curl_client_write(data, CLIENTWRITE_BODY,
  906. (char *)msg + off + sizeof(unsigned int),
  907. len);
  908. if(result) {
  909. req->result = result;
  910. next_state = SMB_CLOSE;
  911. break;
  912. }
  913. }
  914. data->req.offset += len;
  915. next_state = (len < MAX_PAYLOAD_SIZE) ? SMB_CLOSE : SMB_DOWNLOAD;
  916. break;
  917. case SMB_UPLOAD:
  918. if(h->status || smbc->got < sizeof(struct smb_header) + 6) {
  919. req->result = CURLE_UPLOAD_FAILED;
  920. next_state = SMB_CLOSE;
  921. break;
  922. }
  923. len = Curl_read16_le(((const unsigned char *) msg) +
  924. sizeof(struct smb_header) + 5);
  925. data->req.bytecount += len;
  926. data->req.offset += len;
  927. Curl_pgrsSetUploadCounter(data, data->req.bytecount);
  928. if(data->req.bytecount >= data->req.size)
  929. next_state = SMB_CLOSE;
  930. else
  931. next_state = SMB_UPLOAD;
  932. break;
  933. case SMB_CLOSE:
  934. /* We don't care if the close failed, proceed to tree disconnect anyway */
  935. next_state = SMB_TREE_DISCONNECT;
  936. break;
  937. case SMB_TREE_DISCONNECT:
  938. next_state = SMB_DONE;
  939. break;
  940. default:
  941. smb_pop_message(conn);
  942. return CURLE_OK; /* ignore */
  943. }
  944. smb_pop_message(conn);
  945. switch(next_state) {
  946. case SMB_OPEN:
  947. result = smb_send_open(data);
  948. break;
  949. case SMB_DOWNLOAD:
  950. result = smb_send_read(data);
  951. break;
  952. case SMB_UPLOAD:
  953. result = smb_send_write(data);
  954. break;
  955. case SMB_CLOSE:
  956. result = smb_send_close(data);
  957. break;
  958. case SMB_TREE_DISCONNECT:
  959. result = smb_send_tree_disconnect(data);
  960. break;
  961. case SMB_DONE:
  962. result = req->result;
  963. *done = true;
  964. break;
  965. default:
  966. break;
  967. }
  968. if(result) {
  969. connclose(conn, "SMB: failed to send message");
  970. return result;
  971. }
  972. request_state(data, next_state);
  973. return CURLE_OK;
  974. }
  975. static CURLcode smb_disconnect(struct Curl_easy *data,
  976. struct connectdata *conn, bool dead)
  977. {
  978. struct smb_conn *smbc = &conn->proto.smbc;
  979. (void) dead;
  980. (void) data;
  981. Curl_safefree(smbc->share);
  982. Curl_safefree(smbc->domain);
  983. Curl_safefree(smbc->recv_buf);
  984. Curl_safefree(smbc->send_buf);
  985. return CURLE_OK;
  986. }
  987. static int smb_getsock(struct Curl_easy *data,
  988. struct connectdata *conn, curl_socket_t *socks)
  989. {
  990. (void)data;
  991. socks[0] = conn->sock[FIRSTSOCKET];
  992. return GETSOCK_READSOCK(0) | GETSOCK_WRITESOCK(0);
  993. }
  994. static CURLcode smb_do(struct Curl_easy *data, bool *done)
  995. {
  996. struct connectdata *conn = data->conn;
  997. struct smb_conn *smbc = &conn->proto.smbc;
  998. *done = FALSE;
  999. if(smbc->share) {
  1000. return CURLE_OK;
  1001. }
  1002. return CURLE_URL_MALFORMAT;
  1003. }
  1004. static CURLcode smb_parse_url_path(struct Curl_easy *data,
  1005. struct connectdata *conn)
  1006. {
  1007. struct smb_request *req = data->req.p.smb;
  1008. struct smb_conn *smbc = &conn->proto.smbc;
  1009. char *path;
  1010. char *slash;
  1011. /* URL decode the path */
  1012. CURLcode result = Curl_urldecode(data->state.up.path, 0, &path, NULL,
  1013. REJECT_CTRL);
  1014. if(result)
  1015. return result;
  1016. /* Parse the path for the share */
  1017. smbc->share = strdup((*path == '/' || *path == '\\') ? path + 1 : path);
  1018. free(path);
  1019. if(!smbc->share)
  1020. return CURLE_OUT_OF_MEMORY;
  1021. slash = strchr(smbc->share, '/');
  1022. if(!slash)
  1023. slash = strchr(smbc->share, '\\');
  1024. /* The share must be present */
  1025. if(!slash) {
  1026. Curl_safefree(smbc->share);
  1027. failf(data, "missing share in URL path for SMB");
  1028. return CURLE_URL_MALFORMAT;
  1029. }
  1030. /* Parse the path for the file path converting any forward slashes into
  1031. backslashes */
  1032. *slash++ = 0;
  1033. req->path = slash;
  1034. for(; *slash; slash++) {
  1035. if(*slash == '/')
  1036. *slash = '\\';
  1037. }
  1038. return CURLE_OK;
  1039. }
  1040. #endif /* CURL_DISABLE_SMB && USE_CURL_NTLM_CORE &&
  1041. SIZEOF_CURL_OFF_T > 4 */