Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | /* * fs/proc/omirr.c - online mirror support * * (C) 1997 Thomas Schoebel-Theuer */ #include <linux/string.h> #include <linux/mm.h> #include <linux/fs.h> #include <linux/omirr.h> #include <asm/uaccess.h> static int nr_omirr_open = 0; static int cleared_flag = 0; static char * buffer = NULL; static int read_pos, write_pos; static int clip_pos, max_pos; static DECLARE_WAIT_QUEUE_HEAD(read_wait); static DECLARE_WAIT_QUEUE_HEAD(write_wait); static /*inline*/ int reserve_write_space(int len) { int rest = max_pos - write_pos; if(rest < len) { clip_pos = write_pos; write_pos = 0; rest = max_pos; } while(read_pos > write_pos && read_pos <= write_pos+len) { if(!nr_omirr_open) return 0; interruptible_sleep_on(&write_wait); } return 1; } static /*inline*/ void write_space(int len) { write_pos += len; wake_up_interruptible(&read_wait); } static /*inline*/ int reserve_read_space(int len) { int rest = clip_pos - read_pos; if(!rest) { read_pos = 0; rest = clip_pos; clip_pos = max_pos; } if(len > rest) len = rest; while(read_pos == write_pos) { interruptible_sleep_on(&read_wait); } rest = write_pos - read_pos; if(rest > 0 && rest < len) len = rest; return len; } static /*inline*/ void read_space(int len) { read_pos += len; if(read_pos >= clip_pos) { read_pos = 0; clip_pos = max_pos; } wake_up_interruptible(&write_wait); } static /*inline*/ void init_buffer(char * initxt) { int len = initxt ? strlen(initxt) : 0; if(!buffer) { buffer = (char*)__get_free_page(GFP_USER); max_pos = clip_pos = PAGE_SIZE; } read_pos = write_pos = 0; memcpy(buffer, initxt, len); write_space(len); } static int omirr_open(struct inode * inode, struct file * file) { if(nr_omirr_open) return -EAGAIN; nr_omirr_open++; if(!buffer) init_buffer(NULL); return 0; } static int omirr_release(struct inode * inode, struct file * file) { nr_omirr_open--; read_space(0); return 0; } static long omirr_read(struct inode * inode, struct file * file, char * buf, unsigned long count) { char * tmp; int len; int error = 0; if(!count) goto done; error = -EINVAL; if(!buf || count < 0) goto done; error = verify_area(VERIFY_WRITE, buf, count); if(error) goto done; error = -EAGAIN; if((file->f_flags & O_NONBLOCK) && read_pos == write_pos) goto done; error = len = reserve_read_space(count); tmp = buffer + read_pos; while(len) { put_user(*tmp++, buf++); len--; } read_space(error); done: return error; } int compute_name(struct dentry * entry, char * buf) { int len; if(IS_ROOT(entry)) { *buf = '/'; return 1; } len = compute_name(entry->d_parent, buf); if(len > 1) { buf[len++] = '/'; } memcpy(buf+len, entry->d_name, entry->d_len); return len + entry->d_len; } int _omirr_print(struct dentry * ent1, struct dentry * ent2, struct qstr * suffix, const char * fmt, va_list args1, va_list args2) { int count = strlen(fmt) + 10; /* estimate */ const char * tmp = fmt; char lenbuf[8]; int res; if(!buffer) init_buffer(NULL); while(*tmp) { while(*tmp && *tmp++ != '%') ; if(*tmp) { if(*tmp == 's') { char * str = va_arg(args1, char*); count += strlen(str); } else { (void)va_arg(args1, int); count += 8; /* estimate */ } } } if(ent1) { struct dentry * dent = ent1; while(dent && !IS_ROOT(dent)) { count += dent->d_len + 1; dent = dent->d_parent; } count++; if(ent2) { dent = ent2; while(dent && !IS_ROOT(dent)) { count += dent->d_len + 1; dent = dent->d_parent; } count++; } if(suffix) count += suffix->len + 1; } if((nr_omirr_open | cleared_flag) && reserve_write_space(count)) { cleared_flag = 0; res = vsprintf(buffer+write_pos+4, fmt, args2) + 4; if(res > count) printk("omirr: format estimate was wrong\n"); if(ent1) { res += compute_name(ent1, buffer+write_pos+res); if(ent2) { buffer[write_pos+res++] = '\0'; res += compute_name(ent2, buffer+write_pos+res); } if(suffix) { buffer[write_pos+res++] = '/'; memcpy(buffer+write_pos+res, suffix->name, suffix->len); res += suffix->len; } buffer[write_pos+res++] = '\0'; buffer[write_pos+res++] = '\n'; } sprintf(lenbuf, "%04d", res); memcpy(buffer+write_pos, lenbuf, 4); } else { if(!cleared_flag) { cleared_flag = 1; init_buffer("0007 Z\n"); } res = 0; } write_space(res); return res; } int omirr_print(struct dentry * ent1, struct dentry * ent2, struct qstr * suffix, const char * fmt, ...) { va_list args1, args2; int res; /* I don't know whether I could make a simple copy of the va_list, * so for the safe way... */ va_start(args1, fmt); va_start(args2, fmt); res = _omirr_print(ent1, ent2, suffix, fmt, args1, args2); va_end(args2); va_end(args1); return res; } int omirr_printall(struct inode * inode, const char * fmt, ...) { int res = 0; struct dentry * tmp = inode->i_dentry; if(tmp) do { va_list args1, args2; va_start(args1, fmt); va_start(args2, fmt); res += _omirr_print(tmp, NULL, NULL, fmt, args1, args2); va_end(args2); va_end(args1); tmp = tmp->d_next; } while(tmp != inode->i_dentry); return res; } static struct file_operations omirr_operations = { NULL, /* omirr_lseek */ omirr_read, NULL, /* omirr_write */ NULL, /* omirr_readdir */ NULL, /* omirr_select */ NULL, /* omirr_ioctl */ NULL, /* mmap */ omirr_open, NULL, /* flush */ omirr_release, NULL, /* fsync */ NULL, /* fasync */ NULL, /* check_media_change */ NULL /* revalidate */ }; struct inode_operations proc_omirr_inode_operations = { &omirr_operations, NULL, /* create */ NULL, /* lookup */ NULL, /* link */ NULL, /* unlink */ NULL, /* symlink */ NULL, /* mkdir */ NULL, /* rmdir */ NULL, /* mknod */ NULL, /* rename */ NULL, /* readlink */ NULL, /* follow_link */ NULL, /* get_block */ NULL, /* readpage */ NULL, /* writepage */ NULL, /* flushpage */ NULL, /* truncate */ NULL, /* permission */ NULL, /* smap */ NULL /* revalidate */ }; |