blob: 15a02a05ff4095d06d123b81220c5d9b7a9cebd2 [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS client file system
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells9b3f26c2009-04-03 16:42:41 +01003 * Copyright (C) 2002,5 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/completion.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040016#include <linux/sched.h>
David Howellse0661df2016-08-30 16:05:14 +010017#include <linux/random.h>
David Howells8e8d7f12017-01-05 10:38:34 +000018#define CREATE_TRACE_POINTS
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "internal.h"
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021MODULE_DESCRIPTION("AFS Client File System");
22MODULE_AUTHOR("Red Hat, Inc.");
23MODULE_LICENSE("GPL");
24
David Howells08e0e7c2007-04-26 15:55:03 -070025unsigned afs_debug;
26module_param_named(debug, afs_debug, uint, S_IWUSR | S_IRUGO);
Paul Bolle424b00e2008-04-16 11:08:22 +010027MODULE_PARM_DESC(debug, "AFS debugging mask");
David Howells08e0e7c2007-04-26 15:55:03 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static char *rootcell;
30
31module_param(rootcell, charp, 0);
32MODULE_PARM_DESC(rootcell, "root AFS cell name and VL server IP addr list");
33
Tejun Heo0ad53ee2011-01-14 15:56:37 +000034struct workqueue_struct *afs_wq;
David Howellsf044c882017-11-02 15:27:45 +000035struct afs_net __afs_net;
36
37/*
38 * Initialise an AFS network namespace record.
39 */
40static int __net_init afs_net_init(struct afs_net *net)
41{
42 int ret;
43
44 net->live = true;
45 generate_random_uuid((unsigned char *)&net->uuid);
46
47 INIT_WORK(&net->charge_preallocation_work, afs_charge_preallocation);
48 mutex_init(&net->socket_mutex);
David Howells989782d2017-11-02 15:27:50 +000049
50 net->cells = RB_ROOT;
51 seqlock_init(&net->cells_lock);
52 INIT_WORK(&net->cells_manager, afs_manage_cells);
53 timer_setup(&net->cells_timer, afs_cells_timer, 0);
54
55 spin_lock_init(&net->proc_cells_lock);
David Howellsf044c882017-11-02 15:27:45 +000056 INIT_LIST_HEAD(&net->proc_cells);
David Howells989782d2017-11-02 15:27:50 +000057
David Howellsd2ddc772017-11-02 15:27:50 +000058 seqlock_init(&net->fs_lock);
59 net->fs_servers = RB_ROOT;
60 INIT_LIST_HEAD(&net->fs_updates);
61 INIT_HLIST_HEAD(&net->fs_proc);
62
63 INIT_HLIST_HEAD(&net->fs_addresses4);
64 INIT_HLIST_HEAD(&net->fs_addresses6);
65 seqlock_init(&net->fs_addr_lock);
66
67 INIT_WORK(&net->fs_manager, afs_manage_servers);
68 timer_setup(&net->fs_timer, afs_servers_timer, 0);
David Howellsf044c882017-11-02 15:27:45 +000069
70 /* Register the /proc stuff */
71 ret = afs_proc_init(net);
72 if (ret < 0)
73 goto error_proc;
74
75 /* Initialise the cell DB */
76 ret = afs_cell_init(net, rootcell);
77 if (ret < 0)
78 goto error_cell_init;
79
80 /* Create the RxRPC transport */
81 ret = afs_open_socket(net);
82 if (ret < 0)
83 goto error_open_socket;
84
85 return 0;
86
87error_open_socket:
David Howells989782d2017-11-02 15:27:50 +000088 net->live = false;
David Howellsf044c882017-11-02 15:27:45 +000089 afs_cell_purge(net);
David Howellsd2ddc772017-11-02 15:27:50 +000090 afs_purge_servers(net);
David Howellsf044c882017-11-02 15:27:45 +000091error_cell_init:
David Howells989782d2017-11-02 15:27:50 +000092 net->live = false;
David Howellsf044c882017-11-02 15:27:45 +000093 afs_proc_cleanup(net);
94error_proc:
David Howells989782d2017-11-02 15:27:50 +000095 net->live = false;
David Howellsf044c882017-11-02 15:27:45 +000096 return ret;
97}
98
99/*
100 * Clean up and destroy an AFS network namespace record.
101 */
102static void __net_exit afs_net_exit(struct afs_net *net)
103{
104 net->live = false;
David Howellsf044c882017-11-02 15:27:45 +0000105 afs_cell_purge(net);
David Howellsd2ddc772017-11-02 15:27:50 +0000106 afs_purge_servers(net);
David Howellse3b2ffe2017-11-02 15:27:45 +0000107 afs_close_socket(net);
David Howellsf044c882017-11-02 15:27:45 +0000108 afs_proc_cleanup(net);
109}
David Howellsb908fe62007-04-26 15:58:17 -0700110
111/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * initialise the AFS client FS module
113 */
114static int __init afs_init(void)
115{
David Howellsf044c882017-11-02 15:27:45 +0000116 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 printk(KERN_INFO "kAFS: Red Hat AFS client v0.1 registering.\n");
119
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000120 afs_wq = alloc_workqueue("afs", 0, 0);
121 if (!afs_wq)
David Howellsf044c882017-11-02 15:27:45 +0000122 goto error_afs_wq;
123 afs_async_calls = alloc_workqueue("kafsd", WQ_MEM_RECLAIM, 0);
124 if (!afs_async_calls)
125 goto error_async;
David Howellsf044c882017-11-02 15:27:45 +0000126 afs_lock_manager = alloc_workqueue("kafs_lockd", WQ_MEM_RECLAIM, 0);
127 if (!afs_lock_manager)
128 goto error_lockmgr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
David Howells9b3f26c2009-04-03 16:42:41 +0100130#ifdef CONFIG_AFS_FSCACHE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* we want to be able to cache */
David Howells9b3f26c2009-04-03 16:42:41 +0100132 ret = fscache_register_netfs(&afs_cache_netfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 goto error_cache;
135#endif
136
David Howellsf044c882017-11-02 15:27:45 +0000137 ret = afs_net_init(&__afs_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (ret < 0)
David Howellsf044c882017-11-02 15:27:45 +0000139 goto error_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* register the filesystems */
142 ret = afs_fs_init();
143 if (ret < 0)
David Howellsec268152007-04-26 15:49:28 -0700144 goto error_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 return ret;
147
David Howellsec268152007-04-26 15:49:28 -0700148error_fs:
David Howellsf044c882017-11-02 15:27:45 +0000149 afs_net_exit(&__afs_net);
150error_net:
David Howells9b3f26c2009-04-03 16:42:41 +0100151#ifdef CONFIG_AFS_FSCACHE
152 fscache_unregister_netfs(&afs_cache_netfs);
David Howellsec268152007-04-26 15:49:28 -0700153error_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#endif
David Howellsf044c882017-11-02 15:27:45 +0000155 destroy_workqueue(afs_lock_manager);
156error_lockmgr:
David Howellsf044c882017-11-02 15:27:45 +0000157 destroy_workqueue(afs_async_calls);
158error_async:
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000159 destroy_workqueue(afs_wq);
David Howellsf044c882017-11-02 15:27:45 +0000160error_afs_wq:
David Howells416351f2007-05-09 02:33:45 -0700161 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 printk(KERN_ERR "kAFS: failed to register: %d\n", ret);
163 return ret;
David Howellsec268152007-04-26 15:49:28 -0700164}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/* XXX late_initcall is kludgy, but the only alternative seems to create
167 * a transport upon the first mount, which is worse. Or is it?
168 */
169late_initcall(afs_init); /* must be called after net/ to create socket */
David Howellsec268152007-04-26 15:49:28 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/*
172 * clean up on module removal
173 */
174static void __exit afs_exit(void)
175{
176 printk(KERN_INFO "kAFS: Red Hat AFS client v0.1 unregistering.\n");
177
178 afs_fs_exit();
David Howellsf044c882017-11-02 15:27:45 +0000179 afs_net_exit(&__afs_net);
David Howells9b3f26c2009-04-03 16:42:41 +0100180#ifdef CONFIG_AFS_FSCACHE
181 fscache_unregister_netfs(&afs_cache_netfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#endif
David Howellsf044c882017-11-02 15:27:45 +0000183 destroy_workqueue(afs_lock_manager);
David Howellsf044c882017-11-02 15:27:45 +0000184 destroy_workqueue(afs_async_calls);
185 destroy_workqueue(afs_wq);
David Howellsbe080a62017-11-02 15:27:49 +0000186 afs_clean_up_permit_cache();
David Howells416351f2007-05-09 02:33:45 -0700187 rcu_barrier();
David Howellsec268152007-04-26 15:49:28 -0700188}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190module_exit(afs_exit);