pjd | 1 Sep 2007 08:34
Picon
Favicon

Re: kern/113790: [patch] enable the Camellia block cipher on GEOM ELI (geli).

Synopsis: [patch] enable the Camellia block cipher on GEOM ELI (geli).

State-Changed-From-To: open->closed
State-Changed-By: pjd
State-Changed-When: Sat Sep 1 06:33:25 UTC 2007
State-Changed-Why: 
Patch committed to HEAD. Thank you!

Responsible-Changed-From-To: freebsd-geom-≥pjd
Responsible-Changed-By: pjd
Responsible-Changed-When: Sat Sep 1 06:33:25 UTC 2007
Responsible-Changed-Why: 
GELI is mine.

http://www.freebsd.org/cgi/query-pr.cgi?pr=113790
FreeBSD bugmaster | 3 Sep 2007 13:08
Picon
Favicon

Current problem reports assigned to you

Current FreeBSD problem reports
Critical problems
Serious problems

S Tracker      Resp.      Description
--------------------------------------------------------------------------------
o kern/73177   geom       kldload geom_* causes panic due to memory exhaustion
o kern/76538   geom       [gbde] nfs-write on gbde partition stalls and continue
o kern/83464   geom       [geom] [patch] Unhandled malloc failures within libgeo
o kern/84556   geom       [geom] GBDE-encrypted swap causes panic at shutdown
o kern/87544   geom       [gbde] mmaping large files on a gbde filesystem deadlo
o kern/89102   geom       [geom_vfs] [panic] panic when forced unmount FS from u
o bin/90093    geom       fdisk(8) incapable of altering in-core geometry
o kern/90582   geom       [geom_mirror] [panic] Restore cause panic string (ffs_
o kern/98034   geom       [geom] dereference of NULL pointer in acd_geom_detach 
o kern/104389  geom       [geom] [patch] sys/geom/geom_dump.c doesn't encode XML
o kern/113419  geom       [geom] geom fox multipathing not failing back
o misc/113543  geom       [geom] [patch] geom(8) utilities don't work inside the
o kern/113957  geom       [gmirror] gmirror is intermittently reporting a degrad
o kern/115572  geom       [gbde] gbde partitions fail at 28bit/48bit LBA address

14 problems total.

Non-critical problems

S Tracker      Resp.      Description
--------------------------------------------------------------------------------
o bin/78131    geom       gbde "destroy" not working.
o kern/79251   geom       [2TB] newfs fails on 2.6TB gbde device
o kern/94632   geom       [geom] Kernel output resets input while GELI asks for 
(Continue reading)

cracker jack | 4 Sep 2007 17:07

my step-by-step GELI install on 6.2

Hi guys,

I don't intend to re-invent the wheel  but I've documented the steps I took to
create a full disk encryption system with FreeBSD 6.2, putting /boot on a cd.

Its based on my own experiences and what I've read through this mailing-list
and on the internet.

This is not intended as spam and its located at
http://bge-tard.blogspot.com/

comments, corrections and criticisms welcome
Thanks.
Modulok | 5 Sep 2007 04:12
Picon

Root partition on gmirror, provider not being created at boot time...

A. BACKGROUND -- For the impatient, skip to the last paragraph in section B.
I'm experimenting with gmirror on the root partition on a test system
running FreeBSD 6.1-RELEASE. I have two physical disks on the same IDE
header (primary master and primary slave). The disks are jumpered
correctly, the cables are good, the headers are functioning - both
disks are accessible, operational and detected by FreeBSD.

A gmirror was setup using /dev/ad0 as the first consumer. (The debug
kernel state, kern.geom.debugflags=16 was set to permit using an
already mounted device as a consumer.) The mirror was successfully
created, I then inserted an additional consumer /dev/ad1. The array
auto-synchronized. I edited /etc/fstab and /boot/loader.conf to
automatically load the geom_mirror.ko modules and mount the file
systems from their respective geom providers. After rebooting the
system everything still works and root is mounted from its geom
provider, /dev/mirror/gm0s1a,  correctly. Everything works. Now let's
try to break it....

B. PROBLEMS
I simulated a disk failure on the primary slave disk, by physically
disconnecting the power input and booting the system. This is where I
run into problems:

 1. The BIOS complains of a disk error, but otherwise continues to boot.
 2. The master boot record is found on the primary master and the the
boot manger is executed.
 3. loader(8) is found and presents its menu, it starts the automatic
boot sequence with the GENERIC kernel.
 5. After the kernel probes for various devices, "Trying to mount root
from ufs:/dev/mirror/gm0s1a", fails and I am prompted for the location
(Continue reading)

Andrei Kolu | 5 Sep 2007 11:42
Picon

ufs on zvol "Filesystem is not clean..."

Hello!

I am not sure I did everything correctly by creating UFS filesystem ontop of 
zpool. Should I make 10GB UFS on free space or like I did on following 
example?

# zfs create -V 10g tank/jails/ftpjail
# newfs /dev/zvol/tank/ftpjail
# mount /dev/zvol/tank/jails/ftpjail /usr/jails/ftpjail/

No complains from ZFS side- maybe it should say something like "You, stupid! 
You can't do that!"

I can create jail with ezjail:
# ezjail-admin create ftpjail 192.168.1.112
# jail /usr/jails/ftpjail ftpjail.example.com 192.168.1.112 /bin/csh
Everything works fine with jails so far until I reboot system....

Sep  5 12:18:45 freebsd7 kernel: ZFS filesystem version 6
Sep  5 12:18:45 freebsd7 kernel: ZFS storage pool version 6
Sep  5 12:18:45 freebsd7 savecore: no dumps found
Sep  5 12:18:46 freebsd7 root: /etc/rc.d/jail: WARNING: devfs_domount(): 
Unable to mount devfs on /usr/jails/ftpjail/dev
Sep  5 12:18:46 freebsd7 root: /etc/rc.d/jail: WARNING: devfs_mount_jail: 
devfs was not mounted on /usr/jails/ftpjail/dev
Sep  5 12:24:13 freebsd7 kernel: WARNING: R/W mount of /usr/jails/ftpjail 
denied.  Filesystem is not clean - run fsck

# mount /dev/zvol/tank/jails/ftpjail /usr/jails/ftpjail/
mount: /dev/zvol/tank/jails/ftpjail : Operation not permitted
(Continue reading)

Pawel Jakub Dawidek | 5 Sep 2007 12:08
Picon
Favicon

Re: ufs on zvol "Filesystem is not clean..."

On Wed, Sep 05, 2007 at 12:42:44PM +0300, Andrei Kolu wrote:
> Hello!
> 
> I am not sure I did everything correctly by creating UFS filesystem ontop of 
> zpool. Should I make 10GB UFS on free space or like I did on following 
> example?
> 
> # zfs create -V 10g tank/jails/ftpjail
> # newfs /dev/zvol/tank/ftpjail
> # mount /dev/zvol/tank/jails/ftpjail /usr/jails/ftpjail/
> 
> No complains from ZFS side- maybe it should say something like "You, stupid! 
> You can't do that!"
> 
> I can create jail with ezjail:
> # ezjail-admin create ftpjail 192.168.1.112
> # jail /usr/jails/ftpjail ftpjail.example.com 192.168.1.112 /bin/csh
> Everything works fine with jails so far until I reboot system....
> 
> Sep  5 12:18:45 freebsd7 kernel: ZFS filesystem version 6
> Sep  5 12:18:45 freebsd7 kernel: ZFS storage pool version 6
> Sep  5 12:18:45 freebsd7 savecore: no dumps found
> Sep  5 12:18:46 freebsd7 root: /etc/rc.d/jail: WARNING: devfs_domount(): 
> Unable to mount devfs on /usr/jails/ftpjail/dev
> Sep  5 12:18:46 freebsd7 root: /etc/rc.d/jail: WARNING: devfs_mount_jail: 
> devfs was not mounted on /usr/jails/ftpjail/dev
> Sep  5 12:24:13 freebsd7 kernel: WARNING: R/W mount of /usr/jails/ftpjail 
> denied.  Filesystem is not clean - run fsck

Have you added it to /etc/fstab?
(Continue reading)

Andrei Kolu | 5 Sep 2007 13:01
Picon

Re: ufs on zvol "Filesystem is not clean..."

On Wednesday 05 September 2007 13:08:31 Pawel Jakub Dawidek wrote:
> On Wed, Sep 05, 2007 at 12:42:44PM +0300, Andrei Kolu wrote:
> > Hello!
> >
> > I am not sure I did everything correctly by creating UFS filesystem ontop
> > of zpool. Should I make 10GB UFS on free space or like I did on following
> > example?
> >
> > # zfs create -V 10g tank/jails/ftpjail
> > # newfs /dev/zvol/tank/ftpjail
> > # mount /dev/zvol/tank/jails/ftpjail /usr/jails/ftpjail/
> >
> > No complains from ZFS side- maybe it should say something like "You,
> > stupid! You can't do that!"
> >
> > I can create jail with ezjail:
> > # ezjail-admin create ftpjail 192.168.1.112
> > # jail /usr/jails/ftpjail ftpjail.example.com 192.168.1.112 /bin/csh
> > Everything works fine with jails so far until I reboot system....
> >
> > Sep  5 12:18:45 freebsd7 kernel: ZFS filesystem version 6
> > Sep  5 12:18:45 freebsd7 kernel: ZFS storage pool version 6
> > Sep  5 12:18:45 freebsd7 savecore: no dumps found
> > Sep  5 12:18:46 freebsd7 root: /etc/rc.d/jail: WARNING: devfs_domount():
> > Unable to mount devfs on /usr/jails/ftpjail/dev
> > Sep  5 12:18:46 freebsd7 root: /etc/rc.d/jail: WARNING: devfs_mount_jail:
> > devfs was not mounted on /usr/jails/ftpjail/dev
> > Sep  5 12:24:13 freebsd7 kernel: WARNING: R/W mount of /usr/jails/ftpjail
> > denied.  Filesystem is not clean - run fsck
>
(Continue reading)

Marc Makkes | 5 Sep 2007 12:40
Picon
Picon
Favicon

raid 5 broken

Hi all, 

I've a gvinum raid 5 setup with 8 disk and one disk failed, i replace
the drive with a new one, edited the disklabel. But doesn't appear in
gvinum list: 

Can some point out information about rebuiling plex'es?

Yours,

-marc 

gvinum -> list
7 drives:
D d1                    State: down     /dev/ad6ac      A: 0/238475 MB
D d2                    State: down     /dev/ad8ac      A: 0/238475 MB
D d3                    State: down     /dev/ad10ac     A: 0/238475 MB
D d4                    State: down     /dev/ad12ac     A: 0/238475 MB
D d5                    State: down     /dev/ad14ac     A: 0/238475 MB
D d6                    State: down     /dev/ad16ac     A: 0/238475 MB
D d7                    State: down     /dev/ad18ac     A: 0/238475 MB
Howard Goldstein | 5 Sep 2007 23:42
Picon

ZFS MFC?

Are there plans to bring ZFS down into STABLE?  (If testers are lacking
I'll volunteer)
Pawel Jakub Dawidek | 5 Sep 2007 23:57
Picon
Favicon

Re: ZFS MFC?

On Wed, Sep 05, 2007 at 05:42:38PM -0400, Howard Goldstein wrote:
> Are there plans to bring ZFS down into STABLE?  (If testers are lacking
> I'll volunteer)

There is no need to MFC. ZFS will be in soon-to-be-released 7.0-RELEASE,
thus 7-STABLE branch. It will be too hard to MFC it into 6.x.

--

-- 
Pawel Jakub Dawidek                       http://www.wheel.pl
pjd <at> FreeBSD.org                           http://www.FreeBSD.org
FreeBSD committer                         Am I Evil? Yes, I Am!

Gmane