2 * Copyright (c) 2001 Doug Rabson
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/sys/boot/ia64/libski/skifs.c,v 1.2 2003/09/08 09:11:32 obrien Exp $
27 * $DragonFly: src/sys/boot/ia64/libski/skifs.c,v 1.1 2003/11/10 06:08:37 dillon Exp $
30 #include <sys/param.h>
49 skifs_open(const char *path
, struct open_file
*f
)
54 * Skip leading '/' so that our pretend filesystem starts in
55 * the current working directory.
60 fd
= ssc((u_int64_t
) path
, 1, 0, 0, SSC_OPEN
);
62 f
->f_fsdata
= (void*)(u_int64_t
) fd
;
69 skifs_close(struct open_file
*f
)
71 ssc((u_int64_t
) f
->f_fsdata
, 0, 0, 0, SSC_CLOSE
);
76 skifs_read(struct open_file
*f
, void *buf
, size_t size
, size_t *resid
)
79 struct disk_stat stat
;
82 req
.addr
= (u_int64_t
) buf
;
83 ssc((u_int64_t
) f
->f_fsdata
, 1, (u_int64_t
) &req
, f
->f_offset
, SSC_READ
);
84 stat
.fd
= (u_int64_t
) f
->f_fsdata
;
85 ssc((u_int64_t
)&stat
, 0, 0, 0, SSC_WAIT_COMPLETION
);
87 *resid
= size
- stat
.count
;
88 f
->f_offset
+= stat
.count
;
93 skifs_seek(struct open_file
*f
, off_t offset
, int where
)
107 printf("can't find end of file in SKI\n");
112 f
->f_offset
= base
+ offset
;
117 skifs_stat(struct open_file
*f
, struct stat
*sb
)
119 bzero(sb
, sizeof(*sb
));
120 sb
->st_mode
= S_IFREG
| S_IRUSR
;
125 skifs_readdir(struct open_file
*f
, struct dirent
*d
)
130 struct fs_ops ski_fsops
= {
148 * Print information about disks
151 skifs_dev_print(int verbose
)
156 * Attempt to open the disk described by (dev) for use by (f).
158 * Note that the philosophy here is "give them exactly what
159 * they ask for". This is necessary because being too "smart"
160 * about what the user might want leads to complications.
161 * (eg. given no slice or partition value, with a disk that is
162 * sliced - are they after the first BSD slice, or the DOS
166 skifs_dev_open(struct open_file
*f
, ...)
172 skifs_dev_close(struct open_file
*f
)
179 skifs_dev_strategy(void *devdata
, int rw
, daddr_t dblk
, size_t size
, char *buf
, size_t *rsize
)
184 struct devsw skifs_dev
= {