source: mainline/kernel/arch/mips32/src/mm/tlb.c@ e40e3007

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e40e3007 was c867756e, checked in by Jakub Jermar <jakub@…>, 18 years ago

Write protection fault should not panic the mips32 kernel if it happens during
copy_to_uspace().

  • Property mode set to 100644
File size: 12.8 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2003-2004 Jakub Jermar
[f761f1eb]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[a6dd361]29/** @addtogroup mips32mm
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[f761f1eb]35#include <arch/mm/tlb.h>
[4512d7e]36#include <mm/asid.h>
[f761f1eb]37#include <mm/tlb.h>
[1084a784]38#include <mm/page.h>
[20d50a1]39#include <mm/as.h>
[f761f1eb]40#include <arch/cp0.h>
41#include <panic.h>
42#include <arch.h>
[ab08b42]43#include <symtab.h>
[1084a784]44#include <synch/spinlock.h>
45#include <print.h>
[cc205f1]46#include <debug.h>
[2d01bbd]47#include <align.h>
[874621f]48#include <interrupt.h>
[9c0a9b3]49
[91befde0]50static void tlb_refill_fail(istate_t *);
51static void tlb_invalid_fail(istate_t *);
52static void tlb_modified_fail(istate_t *);
[1084a784]53
[91befde0]54static pte_t *find_mapping_and_check(uintptr_t, int, istate_t *, int *);
[8c5e6c7]55
[91befde0]56/** Initialize TLB.
[1084a784]57 *
58 * Invalidate all entries and mark wired entries.
59 */
[b00fdde]60void tlb_arch_init(void)
[ce031f0]61{
[dd14cced]62 int i;
63
[ce031f0]64 cp0_pagemask_write(TLB_PAGE_MASK_16K);
[dd14cced]65 cp0_entry_hi_write(0);
66 cp0_entry_lo0_write(0);
67 cp0_entry_lo1_write(0);
[ce031f0]68
[dd14cced]69 /* Clear and initialize TLB. */
70
71 for (i = 0; i < TLB_ENTRY_COUNT; i++) {
72 cp0_index_write(i);
73 tlbwi();
74 }
[a98d2ec]75
[ce031f0]76 /*
77 * The kernel is going to make use of some wired
[1084a784]78 * entries (e.g. mapping kernel stacks in kseg3).
[ce031f0]79 */
80 cp0_wired_write(TLB_WIRED);
81}
82
[91befde0]83/** Process TLB Refill Exception.
[1084a784]84 *
[91befde0]85 * @param istate Interrupted register context.
[1084a784]86 */
[25d7709]87void tlb_refill(istate_t *istate)
[1084a784]88{
[cc205f1]89 entry_lo_t lo;
[2299914]90 entry_hi_t hi;
91 asid_t asid;
[7f1c620]92 uintptr_t badvaddr;
[1084a784]93 pte_t *pte;
[e3c762cd]94 int pfrc;
[fd3c9e5]95
[1084a784]96 badvaddr = cp0_badvaddr_read();
[fd3c9e5]97
[2299914]98 spinlock_lock(&AS->lock);
99 asid = AS->asid;
100 spinlock_unlock(&AS->lock);
101
102 page_table_lock(AS, true);
[8c5e6c7]103
[567807b1]104 pte = find_mapping_and_check(badvaddr, PF_ACCESS_READ, istate, &pfrc);
[e3c762cd]105 if (!pte) {
106 switch (pfrc) {
107 case AS_PF_FAULT:
108 goto fail;
109 break;
110 case AS_PF_DEFER:
111 /*
112 * The page fault came during copy_from_uspace()
113 * or copy_to_uspace().
114 */
115 page_table_unlock(AS, true);
116 return;
117 default:
118 panic("unexpected pfrc (%d)\n", pfrc);
119 }
120 }
[38a1a84]121
[1084a784]122 /*
[38a1a84]123 * Record access to PTE.
[1084a784]124 */
[38a1a84]125 pte->a = 1;
126
[edebc15c]127 tlb_prepare_entry_hi(&hi, asid, badvaddr);
[91befde0]128 tlb_prepare_entry_lo(&lo, pte->g, pte->p, pte->d, pte->cacheable,
129 pte->pfn);
[1084a784]130
131 /*
132 * New entry is to be inserted into TLB
133 */
[8c5e6c7]134 cp0_entry_hi_write(hi.value);
[91befde0]135 if ((badvaddr / PAGE_SIZE) % 2 == 0) {
[cc205f1]136 cp0_entry_lo0_write(lo.value);
[1084a784]137 cp0_entry_lo1_write(0);
138 }
139 else {
140 cp0_entry_lo0_write(0);
[cc205f1]141 cp0_entry_lo1_write(lo.value);
[1084a784]142 }
[0bd4f56d]143 cp0_pagemask_write(TLB_PAGE_MASK_16K);
[1084a784]144 tlbwr();
145
[2299914]146 page_table_unlock(AS, true);
[1084a784]147 return;
148
149fail:
[2299914]150 page_table_unlock(AS, true);
[25d7709]151 tlb_refill_fail(istate);
[1084a784]152}
153
[91befde0]154/** Process TLB Invalid Exception.
[38a1a84]155 *
[91befde0]156 * @param istate Interrupted register context.
[38a1a84]157 */
[25d7709]158void tlb_invalid(istate_t *istate)
[1084a784]159{
[cc205f1]160 tlb_index_t index;
[7f1c620]161 uintptr_t badvaddr;
[cc205f1]162 entry_lo_t lo;
[8c5e6c7]163 entry_hi_t hi;
[38a1a84]164 pte_t *pte;
[e3c762cd]165 int pfrc;
[38a1a84]166
167 badvaddr = cp0_badvaddr_read();
168
169 /*
170 * Locate the faulting entry in TLB.
171 */
[8c5e6c7]172 hi.value = cp0_entry_hi_read();
[edebc15c]173 tlb_prepare_entry_hi(&hi, hi.asid, badvaddr);
[8c5e6c7]174 cp0_entry_hi_write(hi.value);
[38a1a84]175 tlbp();
[cc205f1]176 index.value = cp0_index_read();
[2299914]177
178 page_table_lock(AS, true);
[38a1a84]179
180 /*
181 * Fail if the entry is not in TLB.
182 */
[cc205f1]183 if (index.p) {
184 printf("TLB entry not found.\n");
[38a1a84]185 goto fail;
[cc205f1]186 }
[38a1a84]187
[567807b1]188 pte = find_mapping_and_check(badvaddr, PF_ACCESS_READ, istate, &pfrc);
[e3c762cd]189 if (!pte) {
190 switch (pfrc) {
191 case AS_PF_FAULT:
192 goto fail;
193 break;
194 case AS_PF_DEFER:
195 /*
196 * The page fault came during copy_from_uspace()
197 * or copy_to_uspace().
198 */
199 page_table_unlock(AS, true);
200 return;
201 default:
202 panic("unexpected pfrc (%d)\n", pfrc);
203 }
204 }
[38a1a84]205
206 /*
207 * Read the faulting TLB entry.
208 */
209 tlbr();
210
211 /*
212 * Record access to PTE.
213 */
214 pte->a = 1;
215
[91befde0]216 tlb_prepare_entry_lo(&lo, pte->g, pte->p, pte->d, pte->cacheable,
217 pte->pfn);
[38a1a84]218
219 /*
220 * The entry is to be updated in TLB.
221 */
[91befde0]222 if ((badvaddr / PAGE_SIZE) % 2 == 0)
[cc205f1]223 cp0_entry_lo0_write(lo.value);
[38a1a84]224 else
[cc205f1]225 cp0_entry_lo1_write(lo.value);
[0bd4f56d]226 cp0_pagemask_write(TLB_PAGE_MASK_16K);
[38a1a84]227 tlbwi();
228
[2299914]229 page_table_unlock(AS, true);
[38a1a84]230 return;
231
232fail:
[2299914]233 page_table_unlock(AS, true);
[25d7709]234 tlb_invalid_fail(istate);
[1084a784]235}
236
[91befde0]237/** Process TLB Modified Exception.
[38a1a84]238 *
[91befde0]239 * @param istate Interrupted register context.
[38a1a84]240 */
[25d7709]241void tlb_modified(istate_t *istate)
[1084a784]242{
[cc205f1]243 tlb_index_t index;
[7f1c620]244 uintptr_t badvaddr;
[cc205f1]245 entry_lo_t lo;
[8c5e6c7]246 entry_hi_t hi;
[38a1a84]247 pte_t *pte;
[e3c762cd]248 int pfrc;
[38a1a84]249
250 badvaddr = cp0_badvaddr_read();
251
252 /*
253 * Locate the faulting entry in TLB.
254 */
[8c5e6c7]255 hi.value = cp0_entry_hi_read();
[edebc15c]256 tlb_prepare_entry_hi(&hi, hi.asid, badvaddr);
[8c5e6c7]257 cp0_entry_hi_write(hi.value);
[38a1a84]258 tlbp();
[cc205f1]259 index.value = cp0_index_read();
[2299914]260
261 page_table_lock(AS, true);
[38a1a84]262
263 /*
264 * Fail if the entry is not in TLB.
265 */
[cc205f1]266 if (index.p) {
267 printf("TLB entry not found.\n");
[38a1a84]268 goto fail;
[cc205f1]269 }
[38a1a84]270
[567807b1]271 pte = find_mapping_and_check(badvaddr, PF_ACCESS_WRITE, istate, &pfrc);
[e3c762cd]272 if (!pte) {
273 switch (pfrc) {
274 case AS_PF_FAULT:
275 goto fail;
276 break;
277 case AS_PF_DEFER:
278 /*
279 * The page fault came during copy_from_uspace()
280 * or copy_to_uspace().
281 */
282 page_table_unlock(AS, true);
283 return;
284 default:
285 panic("unexpected pfrc (%d)\n", pfrc);
286 }
287 }
[38a1a84]288
289 /*
290 * Read the faulting TLB entry.
291 */
292 tlbr();
293
294 /*
295 * Record access and write to PTE.
296 */
297 pte->a = 1;
[0882a9a]298 pte->d = 1;
[38a1a84]299
[91befde0]300 tlb_prepare_entry_lo(&lo, pte->g, pte->p, pte->w, pte->cacheable,
301 pte->pfn);
[38a1a84]302
303 /*
304 * The entry is to be updated in TLB.
305 */
[91befde0]306 if ((badvaddr / PAGE_SIZE) % 2 == 0)
[cc205f1]307 cp0_entry_lo0_write(lo.value);
[38a1a84]308 else
[cc205f1]309 cp0_entry_lo1_write(lo.value);
[0bd4f56d]310 cp0_pagemask_write(TLB_PAGE_MASK_16K);
[38a1a84]311 tlbwi();
312
[2299914]313 page_table_unlock(AS, true);
[38a1a84]314 return;
315
316fail:
[2299914]317 page_table_unlock(AS, true);
[25d7709]318 tlb_modified_fail(istate);
[1084a784]319}
320
[25d7709]321void tlb_refill_fail(istate_t *istate)
[f761f1eb]322{
[38de8a5]323 char *symbol = "";
324 char *sym2 = "";
325
[25d7709]326 char *s = get_symtab_entry(istate->epc);
[3156582]327 if (s)
328 symbol = s;
[25d7709]329 s = get_symtab_entry(istate->ra);
[3156582]330 if (s)
331 sym2 = s;
[874621f]332
[91befde0]333 fault_if_from_uspace(istate, "TLB Refill Exception on %p",
334 cp0_badvaddr_read());
335 panic("%x: TLB Refill Exception at %x(%s<-%s)\n", cp0_badvaddr_read(),
336 istate->epc, symbol, sym2);
[f761f1eb]337}
338
[1084a784]339
[25d7709]340void tlb_invalid_fail(istate_t *istate)
[f761f1eb]341{
[ab08b42]342 char *symbol = "";
343
[25d7709]344 char *s = get_symtab_entry(istate->epc);
[3156582]345 if (s)
346 symbol = s;
[91befde0]347 fault_if_from_uspace(istate, "TLB Invalid Exception on %p",
348 cp0_badvaddr_read());
349 panic("%x: TLB Invalid Exception at %x(%s)\n", cp0_badvaddr_read(),
350 istate->epc, symbol);
[f761f1eb]351}
352
[25d7709]353void tlb_modified_fail(istate_t *istate)
[ce031f0]354{
355 char *symbol = "";
356
[25d7709]357 char *s = get_symtab_entry(istate->epc);
[ce031f0]358 if (s)
359 symbol = s;
[91befde0]360 fault_if_from_uspace(istate, "TLB Modified Exception on %p",
361 cp0_badvaddr_read());
362 panic("%x: TLB Modified Exception at %x(%s)\n", cp0_badvaddr_read(),
363 istate->epc, symbol);
[ce031f0]364}
365
[91befde0]366/** Try to find PTE for faulting address.
[38a1a84]367 *
[20d50a1]368 * The AS->lock must be held on entry to this function.
[38a1a84]369 *
[91befde0]370 * @param badvaddr Faulting virtual address.
371 * @param access Access mode that caused the fault.
372 * @param istate Pointer to interrupted state.
373 * @param pfrc Pointer to variable where as_page_fault() return code
374 * will be stored.
[38a1a84]375 *
[91befde0]376 * @return PTE on success, NULL otherwise.
[38a1a84]377 */
[91befde0]378pte_t *
379find_mapping_and_check(uintptr_t badvaddr, int access, istate_t *istate,
380 int *pfrc)
[38a1a84]381{
[cc205f1]382 entry_hi_t hi;
[38a1a84]383 pte_t *pte;
384
[cc205f1]385 hi.value = cp0_entry_hi_read();
[38a1a84]386
387 /*
388 * Handler cannot succeed if the ASIDs don't match.
389 */
[20d50a1]390 if (hi.asid != AS->asid) {
391 printf("EntryHi.asid=%d, AS->asid=%d\n", hi.asid, AS->asid);
[38a1a84]392 return NULL;
[cc205f1]393 }
[20d50a1]394
395 /*
396 * Check if the mapping exists in page tables.
397 */
[ef67bab]398 pte = page_mapping_find(AS, badvaddr);
[c867756e]399 if (pte && pte->p && (pte->w || access != PF_ACCESS_WRITE)) {
[20d50a1]400 /*
401 * Mapping found in page tables.
402 * Immediately succeed.
403 */
404 return pte;
405 } else {
[e3c762cd]406 int rc;
407
[20d50a1]408 /*
409 * Mapping not found in page tables.
410 * Resort to higher-level page fault handler.
411 */
[2299914]412 page_table_unlock(AS, true);
[567807b1]413 switch (rc = as_page_fault(badvaddr, access, istate)) {
[e3c762cd]414 case AS_PF_OK:
[20d50a1]415 /*
416 * The higher-level page fault handler succeeded,
417 * The mapping ought to be in place.
418 */
[2299914]419 page_table_lock(AS, true);
[ef67bab]420 pte = page_mapping_find(AS, badvaddr);
[0882a9a]421 ASSERT(pte && pte->p);
[c867756e]422 ASSERT(pte->w || access != PF_ACCESS_WRITE);
[20d50a1]423 return pte;
[e3c762cd]424 break;
425 case AS_PF_DEFER:
426 page_table_lock(AS, true);
427 *pfrc = AS_PF_DEFER;
428 return NULL;
429 break;
430 case AS_PF_FAULT:
[2299914]431 page_table_lock(AS, true);
432 printf("Page fault.\n");
[e3c762cd]433 *pfrc = AS_PF_FAULT;
[2299914]434 return NULL;
[e3c762cd]435 break;
436 default:
437 panic("unexpected rc (%d)\n", rc);
[20d50a1]438 }
[2299914]439
[20d50a1]440 }
[38a1a84]441}
442
[91befde0]443void
444tlb_prepare_entry_lo(entry_lo_t *lo, bool g, bool v, bool d, bool cacheable,
445 uintptr_t pfn)
[38a1a84]446{
[8c5e6c7]447 lo->value = 0;
[38a1a84]448 lo->g = g;
449 lo->v = v;
450 lo->d = d;
[0882a9a]451 lo->c = cacheable ? PAGE_CACHEABLE_EXC_WRITE : PAGE_UNCACHED;
[38a1a84]452 lo->pfn = pfn;
[8c5e6c7]453}
454
[edebc15c]455void tlb_prepare_entry_hi(entry_hi_t *hi, asid_t asid, uintptr_t addr)
[8c5e6c7]456{
[2d01bbd]457 hi->value = ALIGN_DOWN(addr, PAGE_SIZE * 2);
[8c5e6c7]458 hi->asid = asid;
[38a1a84]459}
[b00fdde]460
[02055415]461/** Print contents of TLB. */
[b00fdde]462void tlb_print(void)
463{
[0bd4f56d]464 page_mask_t mask;
[02055415]465 entry_lo_t lo0, lo1;
[f9425006]466 entry_hi_t hi, hi_save;
[a0f6a61]467 unsigned int i;
[02055415]468
[f9425006]469 hi_save.value = cp0_entry_hi_read();
[a0f6a61]470
471 printf("# ASID VPN2 MASK G V D C PFN\n");
472 printf("-- ---- ------ ---- - - - - ------\n");
473
[02055415]474 for (i = 0; i < TLB_ENTRY_COUNT; i++) {
475 cp0_index_write(i);
476 tlbr();
477
[0bd4f56d]478 mask.value = cp0_pagemask_read();
[02055415]479 hi.value = cp0_entry_hi_read();
480 lo0.value = cp0_entry_lo0_read();
481 lo1.value = cp0_entry_lo1_read();
482
[a0f6a61]483 printf("%-2u %-4u %#6x %#4x %1u %1u %1u %1u %#6x\n",
[91befde0]484 i, hi.asid, hi.vpn2, mask.mask,
485 lo0.g, lo0.v, lo0.d, lo0.c, lo0.pfn);
[a0f6a61]486 printf(" %1u %1u %1u %1u %#6x\n",
[91befde0]487 lo1.g, lo1.v, lo1.d, lo1.c, lo1.pfn);
[02055415]488 }
[f9425006]489
490 cp0_entry_hi_write(hi_save.value);
[b00fdde]491}
[a98d2ec]492
[8ad925c]493/** Invalidate all not wired TLB entries. */
[a98d2ec]494void tlb_invalidate_all(void)
495{
[dd14cced]496 ipl_t ipl;
497 entry_lo_t lo0, lo1;
[f9425006]498 entry_hi_t hi_save;
[a98d2ec]499 int i;
500
[f9425006]501 hi_save.value = cp0_entry_hi_read();
[dd14cced]502 ipl = interrupts_disable();
[a98d2ec]503
[8ad925c]504 for (i = TLB_WIRED; i < TLB_ENTRY_COUNT; i++) {
[a98d2ec]505 cp0_index_write(i);
[dd14cced]506 tlbr();
507
508 lo0.value = cp0_entry_lo0_read();
509 lo1.value = cp0_entry_lo1_read();
510
511 lo0.v = 0;
512 lo1.v = 0;
513
514 cp0_entry_lo0_write(lo0.value);
515 cp0_entry_lo1_write(lo1.value);
516
[a98d2ec]517 tlbwi();
518 }
[dd14cced]519
520 interrupts_restore(ipl);
[f9425006]521 cp0_entry_hi_write(hi_save.value);
[a98d2ec]522}
523
524/** Invalidate all TLB entries belonging to specified address space.
525 *
526 * @param asid Address space identifier.
527 */
528void tlb_invalidate_asid(asid_t asid)
529{
[dd14cced]530 ipl_t ipl;
531 entry_lo_t lo0, lo1;
[f9425006]532 entry_hi_t hi, hi_save;
[a98d2ec]533 int i;
534
[dd14cced]535 ASSERT(asid != ASID_INVALID);
536
[f9425006]537 hi_save.value = cp0_entry_hi_read();
[dd14cced]538 ipl = interrupts_disable();
539
[a98d2ec]540 for (i = 0; i < TLB_ENTRY_COUNT; i++) {
541 cp0_index_write(i);
542 tlbr();
543
[dd14cced]544 hi.value = cp0_entry_hi_read();
545
[a98d2ec]546 if (hi.asid == asid) {
[dd14cced]547 lo0.value = cp0_entry_lo0_read();
548 lo1.value = cp0_entry_lo1_read();
549
550 lo0.v = 0;
551 lo1.v = 0;
552
553 cp0_entry_lo0_write(lo0.value);
554 cp0_entry_lo1_write(lo1.value);
555
[a98d2ec]556 tlbwi();
557 }
558 }
[dd14cced]559
560 interrupts_restore(ipl);
[f9425006]561 cp0_entry_hi_write(hi_save.value);
[a98d2ec]562}
563
[91befde0]564/** Invalidate TLB entries for specified page range belonging to specified
565 * address space.
[a98d2ec]566 *
[91befde0]567 * @param asid Address space identifier.
568 * @param page First page whose TLB entry is to be invalidated.
569 * @param cnt Number of entries to invalidate.
[a98d2ec]570 */
[7f1c620]571void tlb_invalidate_pages(asid_t asid, uintptr_t page, count_t cnt)
[a98d2ec]572{
[6c441cf8]573 unsigned int i;
[dd14cced]574 ipl_t ipl;
575 entry_lo_t lo0, lo1;
[f9425006]576 entry_hi_t hi, hi_save;
[a98d2ec]577 tlb_index_t index;
[dd14cced]578
579 ASSERT(asid != ASID_INVALID);
580
[f9425006]581 hi_save.value = cp0_entry_hi_read();
[dd14cced]582 ipl = interrupts_disable();
[a98d2ec]583
[6c441cf8]584 for (i = 0; i < cnt + 1; i += 2) {
[4512d7e]585 hi.value = 0;
[edebc15c]586 tlb_prepare_entry_hi(&hi, asid, page + i * PAGE_SIZE);
[4512d7e]587 cp0_entry_hi_write(hi.value);
[dd14cced]588
[4512d7e]589 tlbp();
590 index.value = cp0_index_read();
[a98d2ec]591
[4512d7e]592 if (!index.p) {
[91befde0]593 /*
594 * Entry was found, index register contains valid
595 * index.
596 */
[4512d7e]597 tlbr();
[dd14cced]598
[4512d7e]599 lo0.value = cp0_entry_lo0_read();
600 lo1.value = cp0_entry_lo1_read();
[dd14cced]601
[4512d7e]602 lo0.v = 0;
603 lo1.v = 0;
[dd14cced]604
[4512d7e]605 cp0_entry_lo0_write(lo0.value);
606 cp0_entry_lo1_write(lo1.value);
[dd14cced]607
[4512d7e]608 tlbwi();
609 }
[a98d2ec]610 }
[dd14cced]611
612 interrupts_restore(ipl);
[f9425006]613 cp0_entry_hi_write(hi_save.value);
[a98d2ec]614}
[b45c443]615
[a6dd361]616/** @}
[b45c443]617 */
Note: See TracBrowser for help on using the repository browser.