File: dav.c

package info (click to toggle)
avfs 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,916 kB
  • sloc: ansic: 31,364; sh: 6,482; perl: 1,916; makefile: 351
file content (737 lines) | stat: -rw-r--r-- 19,050 bytes parent folder | download | duplicates (4)
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
/*  
    AVFS: A Virtual File System Library
    Copyright (C) 1998  Miklos Szeredi <miklos@szeredi.hu>
    Copyright (C) 2019  Ralf Hoffmann <ralf@boomerangsworld.de>
    
    This file can be distributed either under the GNU LGPL, or under
    the GNU GPL. See the file COPYING.LIB and COPYING. 

    DAV module (see http://www.webdav.org/) using Neon
    DAV client library, by Justin Mason <jm-avfs@jmason.org>.
*/

  /* TODO -- http_request_auth implementation */
  /* TODO -- PUT */
  /* TODO -- make GET more efficient by not getting entire file
   * before returning from dav_get() */

#include "dav.h"
#include "avfs.h"
#include "version.h"
#include "remote.h"
#include "prog.h"
#include "filebuf.h"
#include "passwords.h"


#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <neon/ne_auth.h>


/* --------------------------------------------------------------------- */

static char AV_UserAgent[128];

struct davlocalfile {
    int running;
    char *tmpfile;
    char *url;
    avoff_t currsize;
    int fd;
};

/* --------------------------------------------------------------------- */

/*
char *
davlocalfile_to_string (struct davlocalfile *lf)
{
    static char buf[1024];
    snprintf (buf, 1023,
        "[davlocalfile: tmpf=%s url=%s running=%d currsz=%d]",
        lf->tmpfile, lf->url, lf->running, (int) lf->currsize);
    return buf;
}
*/

/* ---------------------------------------------------------------------- */

static char *dav_hostpath_to_url (char *urlbuf, int buflen,
                                        const struct remhostpath *hp)
{
    const char *rawp, *pathp;
    int len;

    *urlbuf = '\0';
    av_log(AVLOG_DEBUG, "DAV: hostpath-to-URL: host=%s path='%s'",
                                hp->host, hp->path);

    /* now rewrite the host bit into the urlbuf, adding:
     * - the protocol bit if http: is specified, as http://
     * - /s instead of :s
     * - a trailing slash
     */
    len = 0; rawp = hp->host;
    if (!strncmp (rawp, "http:", 5)) {
        len += snprintf (urlbuf+len, buflen-len, "http://");
        rawp += 5;
        while (*rawp == '/') { rawp++; }
    } else if (strncmp(rawp, "https:", 6) == 0) {
        len += snprintf (urlbuf+len, buflen-len, "https://");
        rawp += 6;
        while (*rawp == '/') { rawp++; }
    } else {
        len += snprintf (urlbuf+len, buflen-len, "http://");
    }

    for ( ; *rawp != '\0'; rawp++) {
        /* TODO: allow colons, or just pipes? */
        if (/* *rawp == ':' || */ *rawp == '|') {
            urlbuf[len] = '/';
        } else {
            urlbuf[len] = *rawp;
        }
        len++;
    }

    if (len > 0 && urlbuf[len-1] == '/') {
        len--; urlbuf[len] = '\0';
    }

    /* add the path, if it's non-empty */
    for (pathp = hp->path; *pathp == '/'; pathp++);
    if (*pathp != '\0') {
        len += snprintf (urlbuf+len, buflen-len, "/%s", pathp);
    }

    /**
     * Finally, we've rewritten it.
     */
    av_log(AVLOG_DEBUG, "DAV: rewritten URL = '%s'", urlbuf);

    return urlbuf;
}

/* ---------------------------------------------------------------------- */

static void dav_free_localfile(struct davlocalfile *lf)
{
  av_free(lf->url);
}

/* ---------------------------------------------------------------------- */

static int
dav_supply_creds(int is_for_proxy, void *userdata, const char *realm,
                 int attempt, char *username, char *password)
{
    struct pass_session *pass;
    struct av_dav_conn *conn = (struct av_dav_conn*)userdata;
    struct davdata *davdat = conn->data;

    pass = pass_get_password (&(davdat->sessions), realm, conn->uri.host);
    if (pass == NULL) {
        return -1;
    }

    strncpy(username, pass->username, NE_ABUFSIZ - 1);
    strncpy(password, pass->password, NE_ABUFSIZ - 1);
    username[NE_ABUFSIZ - 1] = '\0';
    password[NE_ABUFSIZ - 1] = '\0';

    return attempt;
}

static int
dav_supply_creds_server(void *userdata, const char *realm, int attempt,
                        char *username, char *password)
{
    return dav_supply_creds(0, userdata, realm, attempt, username, password);
}

static int
dav_supply_creds_proxy(void *userdata, const char *realm, int attempt,
                       char *username, char *password) 
{
    return dav_supply_creds(1, userdata, realm, attempt, username, password);
}

/* ---------------------------------------------------------------------- */

static int
av_dav_conn_init (struct av_dav_conn *conn, struct davdata *davdat,
                  ne_uri *uri)
{
    conn->sesh = ne_session_create(uri->scheme, uri->host, uri->port);

    /* TODO: provide proxy support from http_proxy env var */
    /* TODO: first make sure neon doesn't automatically do this ;) */
    /* http_session_proxy(sess, "proxy.myisp.com", 8080); */

    /* TODO something is missing to make expect100 work, but it works without too */
    /* ne_set_session_flag(conn->sesh, NE_SESSFLAG_EXPECT100, 1); */
    ne_set_useragent (conn->sesh, AV_UserAgent);

    ne_set_server_auth (conn->sesh, dav_supply_creds_server, conn);
    ne_set_proxy_auth (conn->sesh, dav_supply_creds_proxy, conn);

    return 0;
}

static struct av_dav_conn *
new_dav_conn (struct davdata *davdat)
{
    int i;
    struct av_dav_conn *conn;

    for (i = 0; i < AV_MAX_DAV_CONNS; i++) {
        conn = &(davdat->allconns[i]);
        /* skip the busy ones */
        if (conn->isbusy) { continue; }

        conn->isbusy = 1;
        conn->data = davdat;
        conn->sesh = NULL;
        return conn;
    }

    av_log(AVLOG_ERROR, "DAV: out of connections");
    return NULL;
}

/* ---------------------------------------------------------------------- */

static int
http_error_to_errno (const char *method, int httpret, const char *errstr)
{
    int errval = -EIO;

    av_log(AVLOG_ERROR, "DAV: %s failed: (neon err=%d) \"%s\"",
                                    method, httpret, errstr);

    switch (httpret) {
        case NE_ERROR:
        /* Generic error; use http_get_error(session) */
        /* TODO -- fill out more HTTP errors here */

        if (!strncmp (errstr, "404", 3)) {
            errval = -ENOENT;
        } else if (!strncmp (errstr, "403", 3)) {
            errval = -EACCES;
        } else if (!strncmp (errstr, "405", 3)) {
            errval = -EACCES;
        }
        break;

        case NE_LOOKUP:
        /* Name lookup failed */
        errval = -ECONNREFUSED;
        break;

        case NE_AUTH:
        /* User authentication failed on server */
	errval = -EACCES;
        break;

        case NE_PROXYAUTH:
        /* Proxy authentication failed */
	errval = -EACCES;
        break;

        case NE_CONNECT:
        /* Could not connect to server */
        errval = -ECONNREFUSED;
        break;

        case NE_TIMEOUT:
        /* Connection timed out */
        errval = -ETIMEDOUT;
        break;

        case NE_FAILED:
        /* The precondition failed */
        errval = -ENXIO;
        break;

        default:
        av_log (AVLOG_ERROR, "Unknown HTTP error code for %s: %d %s",
                method, httpret, errstr);
	errval = -ENXIO;
        break;
    }
    av_log (AVLOG_DEBUG, "returning errno %d", errval);
    return errval;
}

/* ---------------------------------------------------------------------- */

static int av_get_cb (void *userdata, const char *buf, size_t len)
{
    struct davlocalfile *lf = (struct davlocalfile *) userdata;
    int res;

    av_log(AVLOG_DEBUG, "DAV: GET cb: writing %lu", len);
    res = write (lf->fd, buf, len);
    if (res < 0) {
        av_log (AVLOG_ERROR, "DAV: write failed: %s", strerror(errno));
    }
    if (res != len) {
        av_log (AVLOG_ERROR, "DAV: short write to tmpfile (%i/%lu)",
                res, len);
    }
    lf->currsize += len;

    return 0;
}

static int av_http_read_file(ne_session *sess, const char *uri,
                             ne_block_reader reader, void *userdata)
{
    ne_request *req = ne_request_create(sess, "GET", uri);
    int ret;

    ne_add_response_body_reader(req, ne_accept_2xx, reader, userdata);

    ret = ne_request_dispatch(req);

    if (ret == NE_OK && ne_get_status(req)->klass != 2) {
        ret = NE_ERROR;
    }

    ne_request_destroy(req);

    return ret;
}

static int dav_http_get (struct davdata *davdat, struct davlocalfile *lf)
{
    const char *err;
    int res;
    struct av_dav_conn *conn = NULL;

    conn = new_dav_conn (davdat);
    if (conn == NULL) { return -1; }

    lf->fd = -1;

    if (ne_uri_parse (lf->url, &(conn->uri)) != 0
        || conn->uri.path == NULL
        || conn->uri.host == NULL)
    {
        av_log(AVLOG_ERROR, "DAV: Invalid URI '%s'", lf->url);
        res = -1; goto error;
    }

    lf->fd = open (lf->tmpfile, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0700);
    if (lf->fd < 0) {
        av_log(AVLOG_ERROR, "DAV: failed to write to '%s': %s", lf->tmpfile,
                strerror (errno));
        res = -1; goto error;
    }

    av_dav_conn_init(conn, davdat, &conn->uri);
    av_log(AVLOG_DEBUG, "DAV: created new HTTP session");

    /* unfortunately the Neon API doesn't allow partial reads.
     * Perhaps redo this using the http.c code to avoid having
     * to download the entire file first */
    av_log(AVLOG_DEBUG, "DAV: GETting '%s'", lf->url);
    res = av_http_read_file(conn->sesh, lf->url, av_get_cb, lf);
    close (lf->fd); lf->fd = -1;

    if (res != NE_OK) {
        err = ne_get_error(conn->sesh);
        res = http_error_to_errno ("GET", res, err);
        goto error;
    }

    if (conn->sesh) {
        ne_session_destroy(conn->sesh);
        conn->sesh = NULL;
    }
    ne_uri_free(&conn->uri);
    conn->isbusy = 0;
    return 0;

error:
    if (conn->sesh) {
        ne_session_destroy(conn->sesh);
        conn->sesh = NULL;
    }
    ne_uri_free(&conn->uri);
    conn->isbusy = 0;
    if (lf->fd > 0) { close (lf->fd); lf->fd = -1; }
    return res;
}

/* ---------------------------------------------------------------------- */

/*
 * TODO: rewrite using new "remote" API once it stabilises for writes
 */
#if 0
static int dav_http_put (struct file *fil, struct davlocalfile *lf)
{
  const char *err;
  struct av_dav_conn *conn;
  FILE *fin = NULL;
  int res;

  conn = new_dav_conn (davdat);
  if (conn == NULL) { return -1; }

  if (uri_parse (lf->url, &(conn->uri), &av_dav_uri_defaults) != 0
    || conn->uri.path == NULL
    || conn->uri.host == NULL)
  {
    av_log(AVLOG_ERROR, "DAV: Invalid URI '%s'", lf->url);
    res = -1; goto error;
  }

  http_session_server (conn->sesh, conn->uri.host, conn->uri.port);
  res = lseek (lf->fd, 0, SEEK_SET);
  if (res < 0) {
    res = -errno; goto error;
  }

  fin = fdopen (lf->fd, "r");

  /* unfortunately the Neon API doesn't allow partial writes.
   * Perhaps redo this using the http.c code
   */
  res = http_put (conn->sesh, lf->url, fin);
  if (res != HTTP_OK) {
    err = http_get_error(conn->sesh);
    res = http_error_to_errno ("PUT", res, err);
    goto error;
  }

  conn->isbusy = 0;
  if (fin != NULL) { fclose (fin); }
  close (lf->fd);
  return 0;

error:
  conn->isbusy = 0;
  if (fin != NULL) { fclose (fin); }
  close (lf->fd);
  return res;
}
#endif

/* ---------------------------------------------------------------------- */

static int dav_res_stat_to_avstat (struct av_dav_resource *res,
                struct avstat *stbuf)
{
    stbuf->mtime.sec = res->modtime;
    stbuf->mtime.nsec = 0;
    stbuf->atime = stbuf->mtime;
    stbuf->ctime = stbuf->mtime;

    stbuf->dev = 1;
    stbuf->ino = 1;
    stbuf->nlink = 1;
    stbuf->uid = 0;
    stbuf->gid = 0;
    stbuf->blksize = 1024;

    switch (res->type) {
    case resr_normal:
        stbuf->size = res->size;
        stbuf->blocks = AV_DIV(stbuf->size, 1024);
        if (res->is_executable) {
            stbuf->mode = AV_IFREG | 0777;
        } else {
            stbuf->mode = AV_IFREG | 0666;
        }
        break;

    case resr_reference:
        av_log(AVLOG_WARNING, "DAV: reference: TODO %d", res->type);
        /* symbolic link, doesn't seem to be supported by mod_dav
         * anyway
         */
        return -1;

    case resr_collection:
        stbuf->size = res->size;
        stbuf->blocks = AV_DIV(stbuf->size, 1024);
        stbuf->mode = AV_IFDIR | 0777;
        break;

    default:
        av_log(AVLOG_WARNING, "DAV: unknown resource type %d", res->type);
        return -1;
    }

    return 0;
}

/* ---------------------------------------------------------------------- */

static int
populate_av_tree_from_reslist (struct remdirlist *dl, struct av_dav_conn *conn,
                               struct av_dav_resource *reslist)
{
  struct av_dav_resource *current, *next;
  char *shortname, *endchar;
  int pathlen;

  pathlen = strlen (conn->uri.path);

  for (current = reslist; current!=NULL; current = next) {
      next = current->next;

      /* skip path at start of name, if possible. Also trim
       * out any slashes we won't need. */
      if (!strncmp (current->uri, conn->uri.path, pathlen)) {
          shortname = current->uri + pathlen;
          while (*shortname == '/') {
              shortname++;
          }
          if (shortname[0] == '\0' || !strcmp (shortname, "/")) {
            shortname = ".";
          }
      } else {
          shortname = current->uri;
      }

      endchar = shortname + (strlen(shortname)-1);
      if (*endchar == '/') { *endchar = '\0'; }

      {
          struct avstat stbuf;
          char *linkname = NULL;
          char *remname;

          remname = dl->hostpath.path;

          if (dav_res_stat_to_avstat (current, &stbuf) < 0) {
              av_log (AVLOG_WARNING,
                                "DAV: parsing direntry: to_avstat failed");
              goto skip;
          }

          av_log (AVLOG_DEBUG, "DAV: adding direntry \"%s\" mode=0%o",
                                        remname, stbuf.mode);
          av_remote_add (dl, shortname, linkname, &stbuf);
      }

  skip:
      free_resource (current);
  }

  return 0;
}

/* ---------------------------------------------------------------------- */

static int dav_list(struct remote *rem, struct remdirlist *dl)
{
    char urlbuf[512];
    int res;
    struct davdata *davdat = (struct davdata *) rem->data;
    char *url;
    struct av_dav_conn *conn;
    struct av_dav_resource *reslist = NULL;
    const char *err;

    // to make valgrind happy
    memset(urlbuf, 0, sizeof(urlbuf));

    url = dav_hostpath_to_url (urlbuf, 511, &(dl->hostpath));
    av_log (AVLOG_DEBUG, "DAV: dav_list called on '%s' flags=%x",
                                        url, dl->flags);

    conn = new_dav_conn (davdat);
    if (conn == NULL) { return -1; }

    if (ne_uri_parse (url, &(conn->uri)) != 0
      || conn->uri.path == NULL
      || conn->uri.host == NULL)
    {
        av_log(AVLOG_ERROR, "DAV: Invalid URI '%s'", url);
        res = -1; goto error;
    }

    av_dav_conn_init(conn, davdat, &conn->uri);
    av_log(AVLOG_DEBUG, "DAV: created new HTTP session");

    res = fetch_resource_list (conn, conn->uri.path, 1, 1, &reslist);
    if (res != NE_OK) {
        err = ne_get_error(conn->sesh);
        res = http_error_to_errno ("PROPFIND", res, err);
        goto error;
    }

    if (reslist == NULL) {
        av_log (AVLOG_WARNING, "DAV: no reslist");
        res = -1; goto error;
    }

    if (populate_av_tree_from_reslist (dl, conn, reslist) < 0) {
        res = -1; goto error;
    }

    if (conn->sesh) {
        ne_session_destroy(conn->sesh);
        conn->sesh = NULL;
    }
    ne_uri_free(&conn->uri);
    conn->isbusy = 0;
    return 0;

error:
    if (conn->sesh) {
        ne_session_destroy(conn->sesh);
        conn->sesh = NULL;
    }
    ne_uri_free(&conn->uri);
    conn->isbusy = 0;
    return res;
}

/* ---------------------------------------------------------------------- */

static int dav_get(struct remote *rem, struct remgetparam *gp)
{
    int res;
    char urlbuf[512];
    struct davdata *davdat = (struct davdata *) rem->data;
    struct davlocalfile *lf;
    char *tmpfile;

    res = av_get_tmpfile(&tmpfile);
    if(res < 0) {
        return res;
    }

    AV_NEW_OBJ(lf, dav_free_localfile);

    // to make valgrind happy
    memset(urlbuf, 0, sizeof(urlbuf));

    lf->url = av_strdup (dav_hostpath_to_url
                                    (urlbuf, 511, &(gp->hostpath)));
    lf->tmpfile = tmpfile;
    lf->currsize = 0;
    lf->fd = -1;

    res = dav_http_get (davdat, lf);

    if (res < 0) {
        av_del_tmpfile(lf->tmpfile);
        av_unref_obj(lf);
        return res;
    }

    gp->data = lf;
    gp->localname = lf->tmpfile;

    return 0;
}

/* ---------------------------------------------------------------------- */

static int dav_wait(struct remote *rem, void *data, avoff_t end)
{
    return 1;
}

/* ---------------------------------------------------------------------- */

static int dav_init_ctl(struct vmodule *module, struct davdata *davdat)
{
    int res;
    struct namespace *ns;
    struct statefile *stf;
    struct entry *ent;
    struct avfs *avfs;

    res = av_state_new(module, "dav_ctl", &ns, &avfs);
    if(res < 0)
        return res;

    ent = av_namespace_lookup(ns, NULL, "username");
    AV_NEW(stf);
    stf->data = &(davdat->sessions);
    stf->get = pass_username_get;
    stf->set = pass_username_set;
    av_namespace_set(ent, stf);

    ent = av_namespace_lookup(ns, NULL, "password");
    AV_NEW(stf);
    stf->data = &(davdat->sessions);
    stf->get = pass_password_get;
    stf->set = pass_password_set;
    av_namespace_set(ent, stf);

    ent = av_namespace_lookup(ns, NULL, "loggedin");
    AV_NEW(stf);
    stf->data = &(davdat->sessions);
    stf->get = pass_loggedin_get;
    stf->set = pass_loggedin_set;
    av_namespace_set(ent, stf);

    av_unref_obj(ns);

    return 0;
}

/* ---------------------------------------------------------------------- */

static void dav_destroy(struct remote *rem)
{
    struct davdata *davdat = (struct davdata *) rem->data;

    av_free (davdat);
    av_free (rem->name);
    av_free (rem);
}

/* ---------------------------------------------------------------------- */

int av_init_module_dav(struct vmodule *module)
{
    int res;
    struct remote *rem;
    struct avfs *avfs;
    struct davdata *davdat;

    av_log(AVLOG_DEBUG, "DAV: initializing");

    ne_sock_init();

    AV_NEW(davdat);
    memset (&(davdat->allconns), 0, sizeof(davdat->allconns));

    snprintf (AV_UserAgent, 127, "AVFSCoda/%d", AV_VER);

    AV_NEW(rem);

    rem->data    = davdat;
    rem->flags   = REM_DIR_ONLY;
    rem->name    = av_strdup("dav");
    rem->list    = dav_list;
    rem->get     = dav_get;
    rem->wait    = dav_wait;
    rem->destroy = dav_destroy;

    res = av_remote_init(module, rem, &avfs);
    if (res == 0) {
	res = dav_init_ctl (module, davdat);
	if (res < 0) {
	    av_unref_obj(avfs);
	}
    }

    return 0;
}

// vim:sw=4: