Linux: Use the correct ATIME flag
[openafs.git] / src / afs / LINUX24 / osi_proc.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Linux module support routines.
12  *
13  */
14 #include <afsconfig.h>
15 #include "afs/param.h"
16
17
18 #include <linux/module.h> /* early to avoid printf->printk mapping */
19 #ifdef HAVE_KERNEL_LINUX_SEQ_FILE_H
20 #include <linux/seq_file.h>
21 #endif
22 #include "afs/sysincludes.h"
23 #include "afsincludes.h"
24 #include "afs/nfsclient.h"
25 #include "h/unistd.h"           /* For syscall numbers. */
26 #include "h/mm.h"
27
28 #ifdef AFS_AMD64_LINUX20_ENV
29 #include <asm/ia32_unistd.h>
30 #endif
31
32 #include <linux/proc_fs.h>
33 #include <linux/slab.h>
34 #include <linux/init.h>
35 #include <linux/sched.h>
36 #include <linux/kernel.h>
37
38 struct proc_dir_entry *openafs_procfs;
39
40 #ifdef HAVE_KERNEL_LINUX_SEQ_FILE_H
41 static void *c_start(struct seq_file *m, loff_t *pos)
42 {
43         struct afs_q *cq, *tq;
44         loff_t n = 0;
45
46         AFS_GLOCK();
47         ObtainReadLock(&afs_xcell);
48         for (cq = CellLRU.next; cq != &CellLRU; cq = tq) {
49                 tq = QNext(cq);
50
51                 if (n++ == *pos)
52                         break;
53         }
54         if (cq == &CellLRU)
55                 cq = NULL;
56
57         AFS_GUNLOCK();
58         return cq;
59 }
60
61 static void *c_next(struct seq_file *m, void *p, loff_t *pos)
62 {
63         struct afs_q *cq = p, *tq;
64
65         AFS_GLOCK();
66         (*pos)++;
67         tq = QNext(cq);
68
69         if (tq == &CellLRU)
70                 return NULL;
71
72         AFS_GUNLOCK();
73         return tq;
74 }
75
76 static void c_stop(struct seq_file *m, void *p)
77 {
78         AFS_GLOCK();
79         ReleaseReadLock(&afs_xcell);
80         AFS_GUNLOCK();
81 }
82
83 static int c_show(struct seq_file *m, void *p)
84 {
85         struct afs_q *cq = p;
86         struct cell *tc = QTOC(cq);
87         int j;
88
89         seq_printf(m, ">%s #(%d/%d)\n", tc->cellName,
90                    tc->cellNum, tc->cellIndex);
91
92         for (j = 0; j < AFS_MAXCELLHOSTS; j++) {
93                 afs_uint32 addr;
94
95                 if (!tc->cellHosts[j]) break;
96
97                 addr = tc->cellHosts[j]->addr->sa_ip;
98                 seq_printf(m, "%u.%u.%u.%u #%u.%u.%u.%u\n",
99                            NIPQUAD(addr), NIPQUAD(addr));
100         }
101
102         return 0;
103 }
104
105 static struct seq_operations afs_csdb_op = {
106         .start          = c_start,
107         .next           = c_next,
108         .stop           = c_stop,
109         .show           = c_show,
110 };
111
112 static int afs_csdb_open(struct inode *inode, struct file *file)
113 {
114         return seq_open(file, &afs_csdb_op);
115 }
116
117 static struct file_operations afs_csdb_operations = {
118         .open           = afs_csdb_open,
119         .read           = seq_read,
120         .llseek         = seq_lseek,
121         .release        = seq_release,
122 };
123
124
125 static void *uu_start(struct seq_file *m, loff_t *pos)
126 {
127     struct unixuser *tu;
128     loff_t n = 0;
129     afs_int32 i;
130
131     ObtainReadLock(&afs_xuser);
132     if (!*pos)
133         return (void *)(1);
134
135     for (i = 0; i < NUSERS; i++) {
136         for (tu = afs_users[i]; tu; tu = tu->next) {
137             if (++n == *pos)
138                 return tu;
139         }
140     }
141
142     return NULL;
143 }
144
145 static void *uu_next(struct seq_file *m, void *p, loff_t *pos)
146 {
147     struct unixuser *tu = p;
148     afs_int32 i = 0;
149
150     (*pos)++;
151     if (!p) return NULL;
152
153     if (p != (void *)1) {
154         if (tu->next) return tu->next;
155         i = UHash(tu->uid) + 1;
156     }
157
158     for (; i < NUSERS; i++)
159         if (afs_users[i]) return afs_users[i];
160     return NULL;
161 }
162
163 static void uu_stop(struct seq_file *m, void *p)
164 {
165     ReleaseReadLock(&afs_xuser);
166 }
167
168 static int uu_show(struct seq_file *m, void *p)
169 {
170     struct cell *tc = 0;
171     struct unixuser *tu = p;
172     char *cellname;
173
174     if (p == (void *)1) {
175         seq_printf(m, "%10s %4s %-6s  %-25s %10s",
176                    "UID/PAG", "Refs", "States", "Cell", "ViceID");
177         seq_printf(m, "  %10s %10s %10s %3s",
178                    "Tok Set", "Tok Begin", "Tok Expire", "vno");
179         seq_printf(m, "  %-15s %10s %10s %s\n",
180                    "NFS Client", "UID/PAG", "Client UID", "Sysname(s)");
181
182         return 0;
183     }
184
185     if (tu->cell == -1) {
186         cellname = "<default>";
187     } else {
188         tc = afs_GetCellStale(tu->cell, READ_LOCK);
189         if (tc) cellname = tc->cellName;
190         else cellname = "<unknown>";
191     }
192
193     seq_printf(m, "%10d %4d %04x    %-25s %10d",
194                tu->uid, tu->refCount, tu->states, cellname, tu->vid);
195
196     if (tc) afs_PutCell(tc, READ_LOCK);
197
198     if (tu->states & UHasTokens) {
199         seq_printf(m, "  %10d %10d %10d %3d",
200                    tu->tokenTime, tu->ct.BeginTimestamp, tu->ct.EndTimestamp,
201                    tu->ct.AuthHandle);
202     } else {
203         seq_printf(m, "  %-36s", "Tokens Not Set");
204     }
205
206     if (tu->exporter && tu->exporter->exp_type == EXP_NFS) {
207         struct nfsclientpag *np = (struct nfsclientpag *)(tu->exporter);
208         char ipaddr[16];
209         int i;
210
211         sprintf(ipaddr, "%u.%u.%u.%u", NIPQUAD(np->host));
212         seq_printf(m, "  %-15s %10d %10d", ipaddr, np->uid, np->client_uid);
213         if (np->sysnamecount) {
214             for (i = 0; i < np->sysnamecount; i++)
215                 seq_printf(m, " %s", np->sysname[i]);
216         } else { 
217             seq_printf(m, " <no sysname list>");
218         }
219
220     } else if (tu->exporter) {
221         seq_printf(m, "  Unknown exporter type %d", tu->exporter->exp_type);
222     }
223     seq_printf(m, "\n");
224
225     return 0;
226 }
227
228 static struct seq_operations afs_unixuser_seqop = {
229     .start              = uu_start,
230     .next               = uu_next,
231     .stop               = uu_stop,
232     .show               = uu_show,
233 };
234
235 static int afs_unixuser_open(struct inode *inode, struct file *file)
236 {
237     return seq_open(file, &afs_unixuser_seqop);
238 }
239
240 static struct file_operations afs_unixuser_fops = {
241     .open               = afs_unixuser_open,
242     .read               = seq_read,
243     .llseek             = seq_lseek,
244     .release    = seq_release,
245 };
246
247
248 #else /* HAVE_KERNEL_LINUX_SEQ_FILE_H */
249
250 static int
251 csdbproc_info(char *buffer, char **start, off_t offset, int
252 length)
253 {
254     int len = 0;
255     off_t pos = 0;
256     int cnt;
257     struct afs_q *cq, *tq;
258     struct cell *tc;
259     char tbuffer[16];
260     /* 90 - 64 cellname, 10 for 32 bit num and index, plus
261        decor */
262     char temp[91];
263     afs_uint32 addr;
264     
265     ObtainReadLock(&afs_xcell);
266
267     for (cq = CellLRU.next; cq != &CellLRU; cq = tq) {
268         tc = QTOC(cq); tq = QNext(cq);
269
270         pos += 90;
271
272         if (pos <= offset) {
273             len = 0;
274         } else {
275             sprintf(temp, ">%s #(%d/%d)\n", tc->cellName, 
276                     tc->cellNum, tc->cellIndex);
277             sprintf(buffer + len, "%-89s\n", temp);
278             len += 90;
279             if (pos >= offset+length) {
280                 ReleaseReadLock(&afs_xcell);
281                 goto done;
282             }
283         }
284
285         for (cnt = 0; cnt < AFS_MAXCELLHOSTS; cnt++) {
286             if (!tc->cellHosts[cnt]) break;
287             pos += 90;
288             if (pos <= offset) {
289                 len = 0;
290             } else {
291                 addr = ntohl(tc->cellHosts[cnt]->addr->sa_ip);
292                 sprintf(tbuffer, "%d.%d.%d.%d", 
293                         (int)((addr>>24) & 0xff),
294 (int)((addr>>16) & 0xff),
295                         (int)((addr>>8)  & 0xff), (int)( addr & 0xff));
296                 sprintf(temp, "%s #%s\n", tbuffer, tbuffer);
297                 sprintf(buffer + len, "%-89s\n", temp);
298                 len += 90;
299                 if (pos >= offset+length) {
300                     ReleaseReadLock(&afs_xcell);
301                     goto done;
302                 }
303             }
304         }
305     }
306
307     ReleaseReadLock(&afs_xcell);
308     
309 done:
310     *start = buffer + len - (pos - offset);
311     len = pos - offset;
312     if (len > length)
313         len = length;
314     return len;
315 }
316
317 #endif /* HAVE_KERNEL_LINUX_SEQ_FILE_H */
318
319 void
320 osi_proc_init(void)
321 {
322     struct proc_dir_entry *entry;
323 #if !defined(EXPORTED_PROC_ROOT_FS)
324     char path[64];
325 #endif
326     
327 #if defined(EXPORTED_PROC_ROOT_FS)
328     openafs_procfs = proc_mkdir(PROC_FSDIRNAME, proc_root_fs);
329 #else
330     sprintf(path, "fs/%s", PROC_FSDIRNAME);
331     openafs_procfs = proc_mkdir(path, NULL);
332 #endif
333 #ifdef HAVE_KERNEL_LINUX_SEQ_FILE_H
334     entry = create_proc_entry("unixusers", 0, openafs_procfs);
335     if (entry) {
336         entry->proc_fops = &afs_unixuser_fops;
337 #if defined(STRUCT_PROC_DIR_ENTRY_HAS_OWNER)
338         entry->owner = THIS_MODULE;
339 #endif
340     }
341     entry = create_proc_entry(PROC_CELLSERVDB_NAME, 0, openafs_procfs);
342     if (entry)
343         entry->proc_fops = &afs_csdb_operations;
344 #else
345     entry = create_proc_info_entry(PROC_CELLSERVDB_NAME, (S_IFREG|S_IRUGO), openafs_procfs, csdbproc_info);
346 #endif
347 #if defined(STRUCT_PROC_DIR_ENTRY_HAS_OWNER)
348     entry->owner = THIS_MODULE;
349 #endif
350 }
351
352 void
353 osi_proc_clean(void)
354 {
355 #if !defined(EXPORTED_PROC_ROOT_FS)
356     char path[64];
357 #endif
358
359     remove_proc_entry(PROC_CELLSERVDB_NAME, openafs_procfs);
360 #ifdef HAVE_KERNEL_LINUX_SEQ_FILE_H
361     remove_proc_entry("unixusers", openafs_procfs);
362 #endif
363 #if defined(EXPORTED_PROC_ROOT_FS)
364     remove_proc_entry(PROC_FSDIRNAME, proc_root_fs);
365 #else
366     sprintf(path, "fs/%s", PROC_FSDIRNAME);
367     remove_proc_entry(path, NULL);
368 #endif
369 }