Skip to main content

vfs/directory/mutable/
connection.rs

1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Connection to a directory that can be modified by the client though a FIDL connection.
6
7use crate::common::io1_to_io2_attrs;
8use crate::directory::connection::{BaseConnection, ConnectionState};
9use crate::directory::entry_container::MutableDirectory;
10use crate::execution_scope::ExecutionScope;
11use crate::name::validate_name;
12use crate::node::OpenNode;
13use crate::object_request::ConnectionCreator;
14use crate::path::Path;
15use crate::request_handler::{RequestHandler, RequestListener};
16use crate::token_registry::{TokenInterface, TokenRegistry, Tokenizable};
17use crate::{ObjectRequestRef, ProtocolsExt};
18
19use anyhow::Error;
20use fidl::NullableHandle;
21use fidl_fuchsia_io as fio;
22use std::ops::ControlFlow;
23use std::pin::Pin;
24use std::sync::Arc;
25use storage_trace::{self as trace, TraceFutureExt};
26use zx_status::Status;
27
28pub struct MutableConnection<DirectoryType: MutableDirectory> {
29    base: BaseConnection<DirectoryType>,
30}
31
32impl<DirectoryType: MutableDirectory> MutableConnection<DirectoryType> {
33    /// Creates a new connection to serve the mutable directory. The directory will be served from a
34    /// new async `Task`, not from the current `Task`. Errors in constructing the connection are not
35    /// guaranteed to be returned, they may be sent directly to the client end of the connection.
36    /// This method should be called from within an `ObjectRequest` handler to ensure that errors
37    /// are sent to the client end of the connection.
38    pub async fn create(
39        scope: ExecutionScope,
40        directory: Arc<DirectoryType>,
41        protocols: impl ProtocolsExt,
42        object_request: ObjectRequestRef<'_>,
43    ) -> Result<(), Status> {
44        // Ensure we close the directory if we fail to prepare the connection.
45        let directory = OpenNode::new(directory);
46
47        let connection = MutableConnection {
48            base: BaseConnection::new(scope.clone(), directory, protocols.to_directory_options()?),
49        };
50
51        if let Ok(requests) = object_request.take().into_request_stream(&connection.base).await {
52            scope.spawn(RequestListener::new(requests, Tokenizable::new(connection)));
53        }
54        Ok(())
55    }
56
57    async fn handle_request(
58        this: Pin<&mut Tokenizable<Self>>,
59        request: fio::DirectoryRequest,
60    ) -> Result<ConnectionState, Error> {
61        match request {
62            fio::DirectoryRequest::Unlink { name, options, responder } => {
63                async move {
64                    let result = this.handle_unlink(name, options).await;
65                    responder.send(result.map_err(Status::into_raw))
66                }
67                .trace(trace::trace_future_args!("storage", "Directory::Unlink"))
68                .await?;
69            }
70            fio::DirectoryRequest::GetToken { responder } => {
71                trace::duration!("storage", "Directory::GetToken");
72                let (status, token) = match Self::handle_get_token(this.into_ref()) {
73                    Ok(token) => (Status::OK, Some(token)),
74                    Err(status) => (status, None),
75                };
76                responder.send(status.into_raw(), token)?;
77            }
78            fio::DirectoryRequest::Rename { src, dst_parent_token, dst, responder } => {
79                async move {
80                    let result =
81                        this.handle_rename(src, NullableHandle::from(dst_parent_token), dst).await;
82                    responder.send(result.map_err(Status::into_raw))
83                }
84                .trace(trace::trace_future_args!("storage", "Directory::Rename"))
85                .await?;
86            }
87            #[cfg(fuchsia_api_level_at_least = "28")]
88            fio::DirectoryRequest::DeprecatedSetAttr { flags, attributes, responder } => {
89                let status = match this
90                    .handle_update_attributes(io1_to_io2_attrs(flags, attributes))
91                    .await
92                {
93                    Ok(()) => Status::OK,
94                    Err(status) => status,
95                };
96                responder.send(status.into_raw())?;
97            }
98            #[cfg(not(fuchsia_api_level_at_least = "28"))]
99            fio::DirectoryRequest::SetAttr { flags, attributes, responder } => {
100                let status = match this
101                    .handle_update_attributes(io1_to_io2_attrs(flags, attributes))
102                    .await
103                {
104                    Ok(()) => Status::OK,
105                    Err(status) => status,
106                };
107                responder.send(status.into_raw())?;
108            }
109            fio::DirectoryRequest::Sync { responder } => {
110                async move {
111                    responder.send(this.base.directory.sync().await.map_err(Status::into_raw))
112                }
113                .trace(trace::trace_future_args!("storage", "Directory::Sync"))
114                .await?;
115            }
116            fio::DirectoryRequest::CreateSymlink {
117                responder, name, target, connection, ..
118            } => {
119                async move {
120                    if !this.base.options.rights.contains(fio::Operations::MODIFY_DIRECTORY) {
121                        responder.send(Err(Status::ACCESS_DENIED.into_raw()))
122                    } else if validate_name(&name).is_err() {
123                        responder.send(Err(Status::INVALID_ARGS.into_raw()))
124                    } else {
125                        responder.send(
126                            this.base
127                                .directory
128                                .create_symlink(name, target, connection)
129                                .await
130                                .map_err(Status::into_raw),
131                        )
132                    }
133                }
134                .trace(trace::trace_future_args!("storage", "Directory::CreateSymlink"))
135                .await?;
136            }
137            fio::DirectoryRequest::UpdateAttributes { payload, responder } => {
138                async move {
139                    responder.send(
140                        this.handle_update_attributes(payload).await.map_err(Status::into_raw),
141                    )
142                }
143                .trace(trace::trace_future_args!("storage", "Directory::UpdateAttributes"))
144                .await?;
145            }
146            request => {
147                return this.as_mut().base.handle_request(request).await;
148            }
149        }
150        Ok(ConnectionState::Alive)
151    }
152
153    async fn handle_update_attributes(
154        &self,
155        attributes: fio::MutableNodeAttributes,
156    ) -> Result<(), Status> {
157        if !self.base.options.rights.contains(fio::Operations::UPDATE_ATTRIBUTES) {
158            return Err(Status::BAD_HANDLE);
159        }
160        // TODO(jfsulliv): Consider always permitting attributes to be deferrable. The risk with
161        // this is that filesystems would require a background flush of dirty attributes to disk.
162        self.base.directory.update_attributes(attributes).await
163    }
164
165    async fn handle_unlink(&self, name: String, options: fio::UnlinkOptions) -> Result<(), Status> {
166        if !self.base.options.rights.contains(fio::Rights::MODIFY_DIRECTORY) {
167            return Err(Status::BAD_HANDLE);
168        }
169
170        if name.is_empty() || name.contains('/') || name == "." || name == ".." {
171            return Err(Status::INVALID_ARGS);
172        }
173
174        self.base
175            .directory
176            .clone()
177            .unlink(
178                &name,
179                options
180                    .flags
181                    .map(|f| f.contains(fio::UnlinkFlags::MUST_BE_DIRECTORY))
182                    .unwrap_or(false),
183            )
184            .await
185    }
186
187    fn handle_get_token(this: Pin<&Tokenizable<Self>>) -> Result<NullableHandle, Status> {
188        // TODO(https://fxbug.dev/503041342): The current GetToken method on directory requires
189        // specific rights to get the token in the first place. The new GetToken on Node will
190        // require no rights to get a token, but instead enforced on use of the token. When the old
191        // one is deleted this method (and therefore this check) will be deleted too.
192        if !this.base.options.rights.contains(fio::Rights::MODIFY_DIRECTORY) {
193            return Err(Status::BAD_HANDLE);
194        }
195        Ok(TokenRegistry::get_token(this)?)
196    }
197
198    async fn handle_rename(
199        &self,
200        src: String,
201        dst_parent_token: NullableHandle,
202        dst: String,
203    ) -> Result<(), Status> {
204        if !self.base.options.rights.contains(fio::Rights::MODIFY_DIRECTORY) {
205            return Err(Status::ACCESS_DENIED);
206        }
207
208        let src = Path::validate_and_split(src)?;
209        let dst = Path::validate_and_split(dst)?;
210
211        if !src.is_single_component() || !dst.is_single_component() {
212            return Err(Status::INVALID_ARGS);
213        }
214
215        let (dst_parent, dst_rights) = self
216            .base
217            .scope
218            .token_registry()
219            .get_owner_and_rights(dst_parent_token)?
220            .ok_or(Err(Status::NOT_FOUND))?;
221
222        if !dst_rights.contains(fio::Rights::MODIFY_DIRECTORY) {
223            return Err(Status::ACCESS_DENIED);
224        }
225
226        dst_parent.clone().rename(self.base.directory.clone(), src, dst).await
227    }
228}
229
230impl<DirectoryType: MutableDirectory> ConnectionCreator<DirectoryType>
231    for MutableConnection<DirectoryType>
232{
233    async fn create<'a>(
234        scope: ExecutionScope,
235        node: Arc<DirectoryType>,
236        protocols: impl ProtocolsExt,
237        object_request: ObjectRequestRef<'a>,
238    ) -> Result<(), Status> {
239        Self::create(scope, node, protocols, object_request).await
240    }
241}
242
243impl<DirectoryType: MutableDirectory> RequestHandler
244    for Tokenizable<MutableConnection<DirectoryType>>
245{
246    type Request = Result<fio::DirectoryRequest, fidl::Error>;
247
248    async fn handle_request(self: Pin<&mut Self>, request: Self::Request) -> ControlFlow<()> {
249        if let Some(_guard) = self.base.scope.try_active_guard() {
250            match request {
251                Ok(request) => {
252                    match MutableConnection::<DirectoryType>::handle_request(self, request).await {
253                        Ok(ConnectionState::Alive) => ControlFlow::Continue(()),
254                        Ok(ConnectionState::Closed) | Err(_) => ControlFlow::Break(()),
255                    }
256                }
257                Err(_) => ControlFlow::Break(()),
258            }
259        } else {
260            ControlFlow::Break(())
261        }
262    }
263}
264
265impl<DirectoryType: MutableDirectory> TokenInterface for MutableConnection<DirectoryType> {
266    fn get_node(&self) -> Arc<dyn MutableDirectory> {
267        self.base.directory.clone()
268    }
269
270    fn get_rights(&self) -> fio::Rights {
271        self.base.options.rights
272    }
273
274    fn token_registry(&self) -> &TokenRegistry {
275        self.base.scope.token_registry()
276    }
277}
278
279#[cfg(test)]
280mod tests {
281    use super::*;
282    use crate::ToObjectRequest;
283    use crate::directory::dirents_sink;
284    use crate::directory::entry::{EntryInfo, GetEntryInfo};
285    use crate::directory::entry_container::{Directory, DirectoryWatcher};
286    use crate::directory::traversal_position::TraversalPosition;
287    use crate::node::Node;
288    use fuchsia_sync::Mutex;
289    use futures::future::BoxFuture;
290    use std::any::Any;
291    use std::future::ready;
292    use std::sync::Weak;
293
294    #[derive(Debug, PartialEq)]
295    enum MutableDirectoryAction {
296        Link { id: u32, path: String },
297        Unlink { id: u32, name: String },
298        Rename { id: u32, src_name: String, dst_dir: u32, dst_name: String },
299        UpdateAttributes { id: u32, attributes: fio::MutableNodeAttributes },
300        Sync,
301        Close,
302    }
303
304    #[derive(Debug)]
305    struct MockDirectory {
306        id: u32,
307        fs: Arc<MockFilesystem>,
308    }
309
310    impl MockDirectory {
311        pub fn new(id: u32, fs: Arc<MockFilesystem>) -> Arc<Self> {
312            Arc::new(MockDirectory { id, fs })
313        }
314    }
315
316    impl PartialEq for MockDirectory {
317        fn eq(&self, other: &Self) -> bool {
318            self.id == other.id
319        }
320    }
321
322    impl GetEntryInfo for MockDirectory {
323        fn entry_info(&self) -> EntryInfo {
324            EntryInfo::new(0, fio::DirentType::Directory)
325        }
326    }
327
328    impl Node for MockDirectory {
329        async fn get_attributes(
330            &self,
331            _query: fio::NodeAttributesQuery,
332        ) -> Result<fio::NodeAttributes2, Status> {
333            unimplemented!("Not implemented");
334        }
335
336        fn close(self: Arc<Self>) {
337            let _ = self.fs.handle_event(MutableDirectoryAction::Close);
338        }
339    }
340
341    impl Directory for MockDirectory {
342        fn open(
343            self: Arc<Self>,
344            _scope: ExecutionScope,
345            _path: Path,
346            _flags: fio::Flags,
347            _object_request: ObjectRequestRef<'_>,
348        ) -> Result<(), Status> {
349            unimplemented!("Not implemented!");
350        }
351
352        async fn read_dirents(
353            &self,
354            _pos: &TraversalPosition,
355            _sink: Box<dyn dirents_sink::Sink>,
356        ) -> Result<(TraversalPosition, Box<dyn dirents_sink::Sealed>), Status> {
357            unimplemented!("Not implemented");
358        }
359
360        fn register_watcher(
361            self: Arc<Self>,
362            _scope: ExecutionScope,
363            _mask: fio::WatchMask,
364            _watcher: DirectoryWatcher,
365        ) -> Result<(), Status> {
366            unimplemented!("Not implemented");
367        }
368
369        fn unregister_watcher(self: Arc<Self>, _key: usize) {
370            unimplemented!("Not implemented");
371        }
372    }
373
374    impl MutableDirectory for MockDirectory {
375        fn link<'a>(
376            self: Arc<Self>,
377            path: String,
378            _source_dir: Arc<dyn Any + Send + Sync>,
379            _source_name: &'a str,
380        ) -> BoxFuture<'a, Result<(), Status>> {
381            let result = self.fs.handle_event(MutableDirectoryAction::Link { id: self.id, path });
382            Box::pin(ready(result))
383        }
384
385        async fn unlink(
386            self: Arc<Self>,
387            name: &str,
388            _must_be_directory: bool,
389        ) -> Result<(), Status> {
390            self.fs.handle_event(MutableDirectoryAction::Unlink {
391                id: self.id,
392                name: name.to_string(),
393            })
394        }
395
396        async fn update_attributes(
397            &self,
398            attributes: fio::MutableNodeAttributes,
399        ) -> Result<(), Status> {
400            self.fs
401                .handle_event(MutableDirectoryAction::UpdateAttributes { id: self.id, attributes })
402        }
403
404        async fn sync(&self) -> Result<(), Status> {
405            self.fs.handle_event(MutableDirectoryAction::Sync)
406        }
407
408        fn rename(
409            self: Arc<Self>,
410            src_dir: Arc<dyn MutableDirectory>,
411            src_name: Path,
412            dst_name: Path,
413        ) -> BoxFuture<'static, Result<(), Status>> {
414            let src_dir = src_dir.into_any().downcast::<MockDirectory>().unwrap();
415            let result = self.fs.handle_event(MutableDirectoryAction::Rename {
416                id: src_dir.id,
417                src_name: src_name.into_string(),
418                dst_dir: self.id,
419                dst_name: dst_name.into_string(),
420            });
421            Box::pin(ready(result))
422        }
423    }
424
425    struct Events(Mutex<Vec<MutableDirectoryAction>>);
426
427    impl Events {
428        fn new() -> Arc<Self> {
429            Arc::new(Events(Mutex::new(vec![])))
430        }
431    }
432
433    struct MockFilesystem {
434        cur_id: Mutex<u32>,
435        scope: ExecutionScope,
436        events: Weak<Events>,
437    }
438
439    impl MockFilesystem {
440        pub fn new(events: &Arc<Events>) -> Self {
441            let scope = ExecutionScope::new();
442            MockFilesystem { cur_id: Mutex::new(0), scope, events: Arc::downgrade(events) }
443        }
444
445        pub fn handle_event(&self, event: MutableDirectoryAction) -> Result<(), Status> {
446            self.events.upgrade().map(|x| x.0.lock().push(event));
447            Ok(())
448        }
449
450        pub fn make_connection(
451            self: &Arc<Self>,
452            flags: fio::Flags,
453        ) -> (Arc<MockDirectory>, fio::DirectoryProxy) {
454            let mut cur_id = self.cur_id.lock();
455            let dir = MockDirectory::new(*cur_id, self.clone());
456            *cur_id += 1;
457            let (proxy, server_end) = fidl::endpoints::create_proxy::<fio::DirectoryMarker>();
458            flags.to_object_request(server_end).create_connection_sync::<MutableConnection<_>, _>(
459                self.scope.clone(),
460                dir.clone(),
461                flags,
462            );
463            (dir, proxy)
464        }
465    }
466
467    impl std::fmt::Debug for MockFilesystem {
468        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
469            f.debug_struct("MockFilesystem").field("cur_id", &self.cur_id).finish()
470        }
471    }
472
473    #[fuchsia::test]
474    async fn test_rename() {
475        use fidl::Event;
476
477        let events = Events::new();
478        let fs = Arc::new(MockFilesystem::new(&events));
479
480        let (_dir, proxy) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
481        let (dir2, proxy2) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
482
483        let (status, token) = proxy2.get_token().await.unwrap();
484        assert_eq!(Status::from_raw(status), Status::OK);
485
486        let status = proxy.rename("src", Event::from(token.unwrap()), "dest").await.unwrap();
487        assert!(status.is_ok());
488
489        let events = events.0.lock();
490        assert_eq!(
491            *events,
492            vec![MutableDirectoryAction::Rename {
493                id: 0,
494                src_name: "src".to_owned(),
495                dst_dir: dir2.id,
496                dst_name: "dest".to_owned(),
497            },]
498        );
499    }
500
501    #[fuchsia::test]
502    async fn test_update_attributes() {
503        let events = Events::new();
504        let fs = Arc::new(MockFilesystem::new(&events));
505        let (_dir, proxy) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
506        let attributes = fio::MutableNodeAttributes {
507            creation_time: Some(30),
508            modification_time: Some(100),
509            mode: Some(200),
510            ..Default::default()
511        };
512        proxy
513            .update_attributes(&attributes)
514            .await
515            .expect("FIDL call failed")
516            .map_err(Status::from_raw)
517            .expect("update attributes failed");
518
519        let events = events.0.lock();
520        assert_eq!(*events, vec![MutableDirectoryAction::UpdateAttributes { id: 0, attributes }]);
521    }
522
523    #[fuchsia::test]
524    async fn test_link() {
525        let events = Events::new();
526        let fs = Arc::new(MockFilesystem::new(&events));
527        let (_dir, proxy) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
528        let (_dir2, proxy2) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
529
530        let (status, token) = proxy2.get_token().await.unwrap();
531        assert_eq!(Status::from_raw(status), Status::OK);
532
533        let status = proxy.link("src", token.unwrap(), "dest").await.unwrap();
534        assert_eq!(Status::from_raw(status), Status::OK);
535        let events = events.0.lock();
536        assert_eq!(*events, vec![MutableDirectoryAction::Link { id: 1, path: "dest".to_owned() },]);
537    }
538
539    #[fuchsia::test]
540    async fn test_unlink() {
541        let events = Events::new();
542        let fs = Arc::new(MockFilesystem::new(&events));
543        let (_dir, proxy) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
544        proxy
545            .unlink("test", &fio::UnlinkOptions::default())
546            .await
547            .expect("fidl call failed")
548            .expect("unlink failed");
549        let events = events.0.lock();
550        assert_eq!(
551            *events,
552            vec![MutableDirectoryAction::Unlink { id: 0, name: "test".to_string() },]
553        );
554    }
555
556    #[fuchsia::test]
557    async fn test_sync() {
558        let events = Events::new();
559        let fs = Arc::new(MockFilesystem::new(&events));
560        let (_dir, proxy) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
561        let () = proxy.sync().await.unwrap().map_err(Status::from_raw).unwrap();
562        let events = events.0.lock();
563        assert_eq!(*events, vec![MutableDirectoryAction::Sync]);
564    }
565
566    #[fuchsia::test]
567    async fn test_close() {
568        let events = Events::new();
569        let fs = Arc::new(MockFilesystem::new(&events));
570        let (_dir, proxy) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
571        let () = proxy.close().await.unwrap().map_err(Status::from_raw).unwrap();
572        let events = events.0.lock();
573        assert_eq!(*events, vec![MutableDirectoryAction::Close]);
574    }
575
576    #[fuchsia::test]
577    async fn test_implicit_close() {
578        let events = Events::new();
579        let fs = Arc::new(MockFilesystem::new(&events));
580        let (_dir, _proxy) = fs.clone().make_connection(fio::PERM_READABLE | fio::PERM_WRITABLE);
581
582        fs.scope.shutdown();
583        fs.scope.wait().await;
584
585        let events = events.0.lock();
586        assert_eq!(*events, vec![MutableDirectoryAction::Close]);
587    }
588}