Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Kernel CAPI 2.0 Module - /proc/capi handling |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 1999 by Carsten Paeth <calle@calle.de> |
| 5 | * Copyright 2002 by Kai Germaschewski <kai@germaschewski.name> |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * This software may be used and distributed according to the terms |
| 8 | * of the GNU General Public License, incorporated herein by reference. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | |
| 13 | #include "kcapi.h" |
| 14 | #include <linux/proc_fs.h> |
| 15 | #include <linux/seq_file.h> |
| 16 | #include <linux/init.h> |
Paul Gortmaker | 5d76fc2 | 2011-07-10 12:23:16 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Jan Kiszka | 5225303 | 2010-02-08 10:12:10 +0000 | [diff] [blame] | 19 | static char *state2str(unsigned short state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | { |
Jan Kiszka | 5225303 | 2010-02-08 10:12:10 +0000 | [diff] [blame] | 21 | switch (state) { |
| 22 | case CAPI_CTR_DETECTED: return "detected"; |
| 23 | case CAPI_CTR_LOADING: return "loading"; |
| 24 | case CAPI_CTR_RUNNING: return "running"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | default: return "???"; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // /proc/capi |
| 30 | // =========================================================================== |
| 31 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 32 | // /proc/capi/controller: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | // cnr driver cardstate name driverinfo |
| 34 | // /proc/capi/contrstats: |
| 35 | // cnr nrecvctlpkt nrecvdatapkt nsentctlpkt nsentdatapkt |
| 36 | // --------------------------------------------------------------------------- |
| 37 | |
| 38 | static void *controller_start(struct seq_file *seq, loff_t *pos) |
Jan Kiszka | 0ca3a01 | 2010-02-08 10:12:14 +0000 | [diff] [blame] | 39 | __acquires(capi_controller_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | { |
Jan Kiszka | 0ca3a01 | 2010-02-08 10:12:14 +0000 | [diff] [blame] | 41 | mutex_lock(&capi_controller_lock); |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | if (*pos < CAPI_MAXCONTR) |
Jan Kiszka | 5225303 | 2010-02-08 10:12:10 +0000 | [diff] [blame] | 44 | return &capi_controller[*pos]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | return NULL; |
| 47 | } |
| 48 | |
| 49 | static void *controller_next(struct seq_file *seq, void *v, loff_t *pos) |
| 50 | { |
| 51 | ++*pos; |
| 52 | if (*pos < CAPI_MAXCONTR) |
Jan Kiszka | 5225303 | 2010-02-08 10:12:10 +0000 | [diff] [blame] | 53 | return &capi_controller[*pos]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | return NULL; |
| 56 | } |
| 57 | |
| 58 | static void controller_stop(struct seq_file *seq, void *v) |
Jan Kiszka | 0ca3a01 | 2010-02-08 10:12:14 +0000 | [diff] [blame] | 59 | __releases(capi_controller_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
Jan Kiszka | 0ca3a01 | 2010-02-08 10:12:14 +0000 | [diff] [blame] | 61 | mutex_unlock(&capi_controller_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | static int controller_show(struct seq_file *seq, void *v) |
| 65 | { |
| 66 | struct capi_ctr *ctr = *(struct capi_ctr **) v; |
| 67 | |
| 68 | if (!ctr) |
| 69 | return 0; |
| 70 | |
| 71 | seq_printf(seq, "%d %-10s %-8s %-16s %s\n", |
| 72 | ctr->cnr, ctr->driver_name, |
Jan Kiszka | 5225303 | 2010-02-08 10:12:10 +0000 | [diff] [blame] | 73 | state2str(ctr->state), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | ctr->name, |
| 75 | ctr->procinfo ? ctr->procinfo(ctr) : ""); |
| 76 | |
| 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | static int contrstats_show(struct seq_file *seq, void *v) |
| 81 | { |
| 82 | struct capi_ctr *ctr = *(struct capi_ctr **) v; |
| 83 | |
| 84 | if (!ctr) |
| 85 | return 0; |
| 86 | |
| 87 | seq_printf(seq, "%d %lu %lu %lu %lu\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 88 | ctr->cnr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | ctr->nrecvctlpkt, |
| 90 | ctr->nrecvdatapkt, |
| 91 | ctr->nsentctlpkt, |
| 92 | ctr->nsentdatapkt); |
| 93 | |
| 94 | return 0; |
| 95 | } |
| 96 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 97 | static const struct seq_operations seq_controller_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | .start = controller_start, |
| 99 | .next = controller_next, |
| 100 | .stop = controller_stop, |
| 101 | .show = controller_show, |
| 102 | }; |
| 103 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 104 | static const struct seq_operations seq_contrstats_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | .start = controller_start, |
| 106 | .next = controller_next, |
| 107 | .stop = controller_stop, |
| 108 | .show = contrstats_show, |
| 109 | }; |
| 110 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 111 | // /proc/capi/applications: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | // applid l3cnt dblkcnt dblklen #ncci recvqueuelen |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 113 | // /proc/capi/applstats: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | // applid nrecvctlpkt nrecvdatapkt nsentctlpkt nsentdatapkt |
| 115 | // --------------------------------------------------------------------------- |
| 116 | |
Jan Kiszka | 88c896e | 2010-02-08 10:12:15 +0000 | [diff] [blame] | 117 | static void *applications_start(struct seq_file *seq, loff_t *pos) |
| 118 | __acquires(capi_controller_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Jan Kiszka | 88c896e | 2010-02-08 10:12:15 +0000 | [diff] [blame] | 120 | mutex_lock(&capi_controller_lock); |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | if (*pos < CAPI_MAXAPPL) |
| 123 | return &capi_applications[*pos]; |
| 124 | |
| 125 | return NULL; |
| 126 | } |
| 127 | |
| 128 | static void * |
| 129 | applications_next(struct seq_file *seq, void *v, loff_t *pos) |
| 130 | { |
| 131 | ++*pos; |
| 132 | if (*pos < CAPI_MAXAPPL) |
| 133 | return &capi_applications[*pos]; |
| 134 | |
| 135 | return NULL; |
| 136 | } |
| 137 | |
Jan Kiszka | 88c896e | 2010-02-08 10:12:15 +0000 | [diff] [blame] | 138 | static void applications_stop(struct seq_file *seq, void *v) |
| 139 | __releases(capi_controller_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
Jan Kiszka | 88c896e | 2010-02-08 10:12:15 +0000 | [diff] [blame] | 141 | mutex_unlock(&capi_controller_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | static int |
| 145 | applications_show(struct seq_file *seq, void *v) |
| 146 | { |
| 147 | struct capi20_appl *ap = *(struct capi20_appl **) v; |
| 148 | |
| 149 | if (!ap) |
| 150 | return 0; |
| 151 | |
| 152 | seq_printf(seq, "%u %d %d %d\n", |
| 153 | ap->applid, |
| 154 | ap->rparam.level3cnt, |
| 155 | ap->rparam.datablkcnt, |
| 156 | ap->rparam.datablklen); |
| 157 | |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | static int |
| 162 | applstats_show(struct seq_file *seq, void *v) |
| 163 | { |
| 164 | struct capi20_appl *ap = *(struct capi20_appl **) v; |
| 165 | |
| 166 | if (!ap) |
| 167 | return 0; |
| 168 | |
| 169 | seq_printf(seq, "%u %lu %lu %lu %lu\n", |
| 170 | ap->applid, |
| 171 | ap->nrecvctlpkt, |
| 172 | ap->nrecvdatapkt, |
| 173 | ap->nsentctlpkt, |
| 174 | ap->nsentdatapkt); |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 179 | static const struct seq_operations seq_applications_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | .start = applications_start, |
| 181 | .next = applications_next, |
| 182 | .stop = applications_stop, |
| 183 | .show = applications_show, |
| 184 | }; |
| 185 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 186 | static const struct seq_operations seq_applstats_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | .start = applications_start, |
| 188 | .next = applications_next, |
| 189 | .stop = applications_stop, |
| 190 | .show = applstats_show, |
| 191 | }; |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | // --------------------------------------------------------------------------- |
| 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | static void *capi_driver_start(struct seq_file *seq, loff_t *pos) |
Jan Kiszka | 9717fb8 | 2010-02-08 10:12:11 +0000 | [diff] [blame] | 196 | __acquires(&capi_drivers_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
Jan Kiszka | 9717fb8 | 2010-02-08 10:12:11 +0000 | [diff] [blame] | 198 | mutex_lock(&capi_drivers_lock); |
Pavel Emelianov | 2b7c302 | 2007-07-17 04:04:18 -0700 | [diff] [blame] | 199 | return seq_list_start(&capi_drivers, *pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | static void *capi_driver_next(struct seq_file *seq, void *v, loff_t *pos) |
| 203 | { |
Pavel Emelianov | 2b7c302 | 2007-07-17 04:04:18 -0700 | [diff] [blame] | 204 | return seq_list_next(v, &capi_drivers, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static void capi_driver_stop(struct seq_file *seq, void *v) |
Jan Kiszka | 9717fb8 | 2010-02-08 10:12:11 +0000 | [diff] [blame] | 208 | __releases(&capi_drivers_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
Jan Kiszka | 9717fb8 | 2010-02-08 10:12:11 +0000 | [diff] [blame] | 210 | mutex_unlock(&capi_drivers_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | static int capi_driver_show(struct seq_file *seq, void *v) |
| 214 | { |
Pavel Emelianov | 2b7c302 | 2007-07-17 04:04:18 -0700 | [diff] [blame] | 215 | struct capi_driver *drv = list_entry(v, struct capi_driver, list); |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | seq_printf(seq, "%-32s %s\n", drv->name, drv->revision); |
| 218 | return 0; |
| 219 | } |
| 220 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 221 | static const struct seq_operations seq_capi_driver_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | .start = capi_driver_start, |
| 223 | .next = capi_driver_next, |
| 224 | .stop = capi_driver_stop, |
| 225 | .show = capi_driver_show, |
| 226 | }; |
| 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | // --------------------------------------------------------------------------- |
| 229 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 230 | void __init |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | kcapi_proc_init(void) |
| 232 | { |
| 233 | proc_mkdir("capi", NULL); |
| 234 | proc_mkdir("capi/controllers", NULL); |
Christoph Hellwig | fddda2b | 2018-04-13 19:44:18 +0200 | [diff] [blame] | 235 | proc_create_seq("capi/controller", 0, NULL, &seq_controller_ops); |
| 236 | proc_create_seq("capi/contrstats", 0, NULL, &seq_contrstats_ops); |
| 237 | proc_create_seq("capi/applications", 0, NULL, &seq_applications_ops); |
| 238 | proc_create_seq("capi/applstats", 0, NULL, &seq_applstats_ops); |
| 239 | proc_create_seq("capi/driver", 0, NULL, &seq_capi_driver_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | void __exit |
| 243 | kcapi_proc_exit(void) |
| 244 | { |
| 245 | remove_proc_entry("capi/driver", NULL); |
| 246 | remove_proc_entry("capi/controller", NULL); |
| 247 | remove_proc_entry("capi/contrstats", NULL); |
| 248 | remove_proc_entry("capi/applications", NULL); |
| 249 | remove_proc_entry("capi/applstats", NULL); |
| 250 | remove_proc_entry("capi/controllers", NULL); |
| 251 | remove_proc_entry("capi", NULL); |
| 252 | } |