summaryrefslogtreecommitdiff
path: root/src/scm/webid-oidc/server/resource/wac.scm
blob: 073d77b78238a6f4cf4aea1d559e1e6f3c49e11d (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
;; webid-oidc, implementation of the Solid specification
;; Copyright (C) 2020, 2021  Vivien Kraus

;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as
;; published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.

;; You should have received a copy of the GNU Affero General Public License
;; along with this program.  If not, see <https://www.gnu.org/licenses/>.

(define-module (webid-oidc server resource wac)
  #:use-module (webid-oidc errors)
  #:use-module (webid-oidc server resource path)
  #:use-module (webid-oidc server resource content)
  #:use-module (webid-oidc cache)
  #:use-module (webid-oidc fetch)
  #:use-module ((webid-oidc stubs) #:prefix stubs:)
  #:use-module (webid-oidc rdf-index)
  #:use-module ((webid-oidc refresh-token) #:prefix refresh:)
  #:use-module (web uri)
  #:use-module (web client)
  #:use-module (rdf rdf)
  #:use-module (turtle tordf)
  #:use-module (rnrs bytevectors)
  #:use-module (ice-9 exceptions)
  #:use-module (ice-9 receive)
  #:use-module (ice-9 optargs)
  #:use-module (ice-9 iconv)
  #:use-module (ice-9 textual-ports)
  #:use-module (ice-9 binary-ports)
  #:use-module (ice-9 threads)
  #:use-module (rnrs bytevectors)
  #:use-module (oop goops)
  #:export
  (

   wac-get-modes

   check-acl-can-read
   check-acl-can-write
   check-acl-can-append
   check-acl-can-control

   ))

(define (group-member? http-get group-uri agent)
  (when (string? group-uri)
    (set! group-uri (string->uri group-uri)))
  (when (string? agent)
    (set! group-uri (string->uri agent)))
  (let ((group-doc-uri
         (build-uri (uri-scheme group-uri)
                    #:userinfo (uri-userinfo group-uri)
                    #:host (uri-host group-uri)
                    #:port (uri-port group-uri)
                    #:path (uri-path group-uri)
                    #:query (uri-query group-uri))))
    (with-exception-handler
        (lambda (error)
          (raise-exception
           (make-cannot-fetch-group group-uri error)
           #:continuable? #t)
          #f)
      (lambda ()
        (let ((data (fetch group-doc-uri #:http-get http-get)))
          (with-index
           data
           (lambda (rdf-match)
             (not (null?
                   (rdf-match (uri->string group-uri)
                              "http://www.w3.org/2006/vcard/ns#hasMember"
                              (uri->string agent))))))))
      #:unwind? #t
      #:unwind-for-type &cannot-fetch-linked-data)))

(define (with-rdf-source server-name path content-type static-content f)
  (with-index
   (case content-type
     ((text/turtle)
      (turtle->rdf (string-append
                    "# This is not a file name\n"
                    (utf8->string static-content))
                   (uri->string
                    (build-uri (uri-scheme server-name)
                               #:userinfo (uri-userinfo server-name)
                               #:host (uri-host server-name)
                               #:port (uri-port server-name)
                               #:path (string-append path ".acl"))))))
   f))

(define (check-authorization path check-default? server-name final-path http-get user rdf-match id)
  ;; The authorization should give accessTo path,
  ;; or to a prefix of final-path; and it should
  ;; be for agent user, or a group that contains
  ;; user.
  (let ((access-to-ok
         (and
          ;; We’re looking for acl:accessTo targetting path
          (not
           (null?
            (rdf-match id "http://www.w3.org/ns/auth/acl#accessTo"
                       (uri->string
                        (build-uri (uri-scheme server-name)
                                   #:userinfo (uri-userinfo server-name)
                                   #:host (uri-host server-name)
                                   #:port (uri-port server-name)
                                   #:path path)))))
          (or (not check-default?)
              ;; We’re also looking for acl:default statement
              ;; targetting a prefix of final-path
              (let ((defaults
                      (map rdf-triple-object
                           (rdf-match id "http://www.w3.org/ns/auth/acl#default" #f))))
                (define (default-ok? uri)
                  (and (string? uri)
                       (string->uri uri)
                       (let ((uri (string->uri uri)))
                         (and (eq? (uri-scheme uri)
                                   (uri-scheme server-name))
                              (equal? (uri-userinfo uri)
                                      (uri-userinfo server-name))
                              (equal? (uri-host uri)
                                      (uri-host server-name))
                              (equal? (uri-port uri)
                                      (uri-port server-name))
                              (let ((final-path-components
                                     (split-and-decode-uri-path final-path))
                                    (default-components
                                      (split-and-decode-uri-path (uri-path uri))))
                                (define (prefix? x y)
                                  (or (null? x)
                                      (and (not (null? y))
                                           (equal? (car x) (car y))
                                           (prefix? (cdr x) (cdr y)))))
                                (prefix? default-components final-path-components))))))
                (not (null? (filter default-ok? defaults)))))))
        (agent-ok
         (let ((groups
                (map rdf-triple-object
                     (rdf-match id
                                "http://www.w3.org/ns/auth/acl#agentGroup"
                                #f)))
               (specific-agent-ok?
                (and user
                     (not (null?
                           (rdf-match id
                                      "http://www.w3.org/ns/auth/acl#agent"
                                      (uri->string user))))))
               (public-access?
                (not (null?
                      (rdf-match id
                                 "http://www.w3.org/ns/auth/acl#agentClass"
                                 "http://xmlns.com/foaf/0.1/Agent"))))
               (authenticated-access?
                (not (null?
                      (rdf-match id
                                 "http://www.w3.org/ns/auth/acl#agentClass"
                                 "http://www.w3.org/ns/auth/acl#AuthenticatedAgent")))))
           (or public-access?
               (and user authenticated-access?)
               specific-agent-ok?
               (and user
                    (not (null?
                          (filter (lambda (group)
                                    (group-member? http-get group user))
                                  groups))))))))
    (or
     (and access-to-ok
          agent-ok
          (filter
           (lambda (x) x)
           (map (lambda (triple)
                  (let ((mode (rdf-triple-object triple)))
                    (and (string? mode)
                         (string->uri mode))))
                (rdf-match id
                           "http://www.w3.org/ns/auth/acl#mode"
                           #f))))
     '())))

(define (check-authorizations path check-default? server-name final-path http-get user rdf-match
                              allowed-modes authorizations)
  (if (null? authorizations)
      (reverse allowed-modes)
      (let ((new-modes
             (check-authorization path check-default? server-name final-path http-get user rdf-match
                                  (car authorizations))))
        (check-authorizations
         path check-default? server-name final-path http-get user rdf-match
         (append (reverse new-modes) allowed-modes)
         (cdr authorizations)))))

(define acl-aux (string->uri "http://www.w3.org/ns/auth/acl#accessControl"))

(define* (wac-get-modes server-name final-path user
                        #:key
                        (http-get http-get))
  (with-session
   (lambda (content-type contained static-content create delete)
     (define (wac-check-recursive path check-default?)
       (receive (main-etag auxiliary)
           (with-exception-handler
               (lambda (error)
                 (unless (path-not-found? error)
                   (raise-exception error))
                 (values #f '()))
             (lambda ()
               (read-path path))
             #:unwind? #t
             #:unwind-for-type &path-not-found)
         (let ((acl-etag (assoc-ref auxiliary acl-aux)))
           (if acl-etag
               (with-rdf-source
                server-name path (content-type acl-etag) (static-content acl-etag)
                (lambda (rdf-match)
                  (check-authorizations
                   path check-default? server-name final-path http-get user rdf-match
                   '()
                   (map rdf-triple-subject
                        (rdf-match #f
                                   "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
                                   "http://www.w3.org/ns/auth/acl#Authorization")))))
               ;; No existing ACL.
               (let ((parent-path
                      (string-append
                       "/"
                       (encode-and-join-uri-path
                        (reverse
                         (cdr
                          (reverse
                           (split-and-decode-uri-path path)))))
                       "/")))
                 (when (equal? parent-path "//")
                   ;; The parent is the root
                   (set! parent-path "/"))
                 (wac-check-recursive parent-path #t))))))
     (let ((all-modes (wac-check-recursive final-path #f)))
       (define (accumulate-unique accumulated list)
         (cond
          ((null? list)
           (reverse accumulated))
          ((or (null? accumulated) (not (equal? (car accumulated) (car list))))
           (accumulate-unique (cons (car list) accumulated) (cdr list)))
          (else
           (accumulate-unique accumulated (cdr list)))))
       (accumulate-unique
        '()
        (sort all-modes
              (lambda (a b)
                (string< (uri->string a) (uri->string b)))))))))

(define (check-mode server-name path owner user http-get expected-mode)
  (unless (equal? owner user)
    (receive (base-path type)
        (base-path path)
      (when (equal? type (string->uri "https://www.w3.org/ns/iana/link-relations/relation#describedby"))
        ;; We’re checking the description resource, which is an alias
        ;; for the real resource.
        (set! path base-path))
      (when (equal? type (string->uri "http://www.w3.org/ns/auth/acl#accessControl"))
        ;; We’re checking access modes for the ACL, so we’re looking
        ;; for Control over the base resource.
        (set! path base-path)
        (set! expected-mode (string->uri "http://www.w3.org/ns/auth/acl#Control"))))
    (let ((modes (wac-get-modes server-name path user #:http-get http-get)))
      (define (check-modes modes)
        (if (null? modes)
            (raise-exception
             (make-forbidden path user owner expected-mode))
            (or
             (equal? (car modes) expected-mode)
             ;; It is also OK if we’re asking for acl:Append but
             ;; acl:Write is provided.
             (and (equal? expected-mode (string->uri "http://www.w3.org/ns/auth/acl#Append"))
                  (equal? (car modes) (string->uri "http://www.w3.org/ns/auth/acl#Write")))
             (check-modes (cdr modes)))))
      (check-modes modes))))

(define* (check-acl-can-read server-name path owner user
                             #:key
                             (http-get http-get))
  (check-mode server-name path owner user http-get
              (string->uri "http://www.w3.org/ns/auth/acl#Read")))

(define* (check-acl-can-write server-name path owner user
                             #:key
                             (http-get http-get))
  (check-mode server-name path owner user http-get
              (string->uri "http://www.w3.org/ns/auth/acl#Write")))

(define* (check-acl-can-append server-name path owner user
                             #:key
                             (http-get http-get))
  (check-mode server-name path owner user http-get
              (string->uri "http://www.w3.org/ns/auth/acl#Append")))

(define* (check-acl-can-control server-name path owner user
                             #:key
                             (http-get http-get))
  (check-mode server-name path owner user http-get
              (string->uri "http://www.w3.org/ns/auth/acl#Control")))