iso9660_rrip.c revision 1.9 1 /* $NetBSD: iso9660_rrip.c,v 1.9 2011/05/28 11:59:29 tsutsui Exp $ */
2
3 /*
4 * Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan
5 * Perez-Rathke and Ram Vedam. All rights reserved.
6 *
7 * This code was written by Daniel Watt, Walter Deignan, Ryan Gabrys,
8 * Alan Perez-Rathke and Ram Vedam.
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer in the documentation and/or other materials provided
18 * with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY DANIEL WATT, WALTER DEIGNAN, RYAN
21 * GABRYS, ALAN PEREZ-RATHKE AND RAM VEDAM ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL DANIEL WATT, WALTER DEIGNAN, RYAN
25 * GABRYS, ALAN PEREZ-RATHKE AND RAM VEDAM BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28 * USE,DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
32 * OF SUCH DAMAGE.
33 */
34 /* This will hold all the function definitions
35 * defined in iso9660_rrip.h
36 */
37
38 #include "makefs.h"
39 #include "cd9660.h"
40 #include "iso9660_rrip.h"
41 #include <sys/queue.h>
42 #include <stdio.h>
43
44 #include <sys/cdefs.h>
45 #if defined(__RCSID) && !defined(__lint)
46 __RCSID("$NetBSD: iso9660_rrip.c,v 1.9 2011/05/28 11:59:29 tsutsui Exp $");
47 #endif /* !__lint */
48
49 static void cd9660_rrip_initialize_inode(cd9660node *);
50 static int cd9660_susp_handle_continuation(cd9660node *);
51 static int cd9660_susp_handle_continuation_common(cd9660node *, int);
52
53 int
54 cd9660_susp_initialize(cd9660node *node, cd9660node *parent,
55 cd9660node *grandparent)
56 {
57 cd9660node *cn;
58 int r;
59
60 /* Make sure the node is not NULL. If it is, there are major problems */
61 assert(node != NULL);
62
63 if (!(node->type & CD9660_TYPE_DOT) &&
64 !(node->type & CD9660_TYPE_DOTDOT))
65 TAILQ_INIT(&(node->head));
66 if (node->dot_record != 0)
67 TAILQ_INIT(&(node->dot_record->head));
68 if (node->dot_dot_record != 0)
69 TAILQ_INIT(&(node->dot_dot_record->head));
70
71 /* SUSP specific entries here */
72 if ((r = cd9660_susp_initialize_node(node)) < 0)
73 return r;
74
75 /* currently called cd9660node_rrip_init_links */
76 r = cd9660_rrip_initialize_node(node, parent, grandparent);
77 if (r < 0)
78 return r;
79
80 /*
81 * See if we need a CE record, and set all of the
82 * associated counters.
83 *
84 * This should be called after all extensions. After
85 * this is called, no new records should be added.
86 */
87 if ((r = cd9660_susp_handle_continuation(node)) < 0)
88 return r;
89
90 /* Recurse on children. */
91 TAILQ_FOREACH(cn, &node->cn_children, cn_next_child) {
92 if ((r = cd9660_susp_initialize(cn, node, parent)) < 0)
93 return 0;
94 }
95 return 1;
96 }
97
98 int
99 cd9660_susp_finalize(cd9660node *node)
100 {
101 cd9660node *temp;
102 int r;
103
104 assert(node != NULL);
105
106 if (node == diskStructure.rootNode)
107 diskStructure.susp_continuation_area_current_free = 0;
108
109 if ((r = cd9660_susp_finalize_node(node)) < 0)
110 return r;
111 if ((r = cd9660_rrip_finalize_node(node)) < 0)
112 return r;
113
114 TAILQ_FOREACH(temp, &node->cn_children, cn_next_child) {
115 if ((r = cd9660_susp_finalize(temp)) < 0)
116 return r;
117 }
118 return 1;
119 }
120
121 /*
122 * If we really wanted to speed things up, we could have some sort of
123 * lookup table on the SUSP entry type that calls a functor. Or, we could
124 * combine the functions. These functions are kept separate to allow
125 * easier addition of other extensions.
126
127 * For the sake of simplicity and clarity, we won't be doing that for now.
128 */
129
130 /*
131 * SUSP needs to update the following types:
132 * CE (continuation area)
133 */
134 int
135 cd9660_susp_finalize_node(cd9660node *node)
136 {
137 struct ISO_SUSP_ATTRIBUTES *t;
138
139 /* Handle CE counters */
140 if (node->susp_entry_ce_length > 0) {
141 node->susp_entry_ce_start =
142 diskStructure.susp_continuation_area_current_free;
143 diskStructure.susp_continuation_area_current_free +=
144 node->susp_entry_ce_length;
145 }
146
147 TAILQ_FOREACH(t, &node->head, rr_ll) {
148 if (t->susp_type != SUSP_TYPE_SUSP ||
149 t->entry_type != SUSP_ENTRY_SUSP_CE)
150 continue;
151 cd9660_bothendian_dword(
152 diskStructure.
153 susp_continuation_area_start_sector,
154 t->attr.su_entry.CE.ca_sector);
155
156 cd9660_bothendian_dword(
157 diskStructure.
158 susp_continuation_area_start_sector,
159 t->attr.su_entry.CE.ca_sector);
160 cd9660_bothendian_dword(node->susp_entry_ce_start,
161 t->attr.su_entry.CE.offset);
162 cd9660_bothendian_dword(node->susp_entry_ce_length,
163 t->attr.su_entry.CE.length);
164 }
165 return 0;
166 }
167
168 int
169 cd9660_rrip_finalize_node(cd9660node *node)
170 {
171 struct ISO_SUSP_ATTRIBUTES *t;
172
173 TAILQ_FOREACH(t, &node->head, rr_ll) {
174 if (t->susp_type != SUSP_TYPE_RRIP)
175 continue;
176 switch (t->entry_type) {
177 case SUSP_ENTRY_RRIP_CL:
178 /* Look at rr_relocated*/
179 if (node->rr_relocated == NULL)
180 return -1;
181 cd9660_bothendian_dword(
182 node->rr_relocated->fileDataSector,
183 (unsigned char *)
184 t->attr.rr_entry.CL.dir_loc);
185 break;
186 case SUSP_ENTRY_RRIP_PL:
187 /* Look at rr_real_parent */
188 if (node->rr_real_parent == NULL)
189 return -1;
190 cd9660_bothendian_dword(
191 node->rr_real_parent->fileDataSector,
192 (unsigned char *)
193 t->attr.rr_entry.PL.dir_loc);
194 break;
195 }
196 }
197 return 0;
198 }
199
200 static int
201 cd9660_susp_handle_continuation_common(cd9660node *node, int space)
202 {
203 int ca_used, susp_used, susp_used_pre_ce, working;
204 struct ISO_SUSP_ATTRIBUTES *temp, *pre_ce, *last, *CE, *ST;
205
206 pre_ce = last = NULL;
207 working = 254 - space;
208 if (node->su_tail_size > 0)
209 /* Allow 4 bytes for "ST" record. */
210 working -= node->su_tail_size + 4;
211 /* printf("There are %i bytes to work with\n",working); */
212
213 susp_used_pre_ce = susp_used = 0;
214 ca_used = 0;
215 TAILQ_FOREACH(temp, &node->head, rr_ll) {
216 if (working < 0)
217 break;
218 /*
219 * printf("SUSP Entry found, length is %i\n",
220 * CD9660_SUSP_ENTRY_SIZE(temp));
221 */
222 working -= CD9660_SUSP_ENTRY_SIZE(temp);
223 if (working >= 0) {
224 last = temp;
225 susp_used += CD9660_SUSP_ENTRY_SIZE(temp);
226 }
227 if (working >= 28) {
228 /*
229 * Remember the last entry after which we
230 * could insert a "CE" entry.
231 */
232 pre_ce = last;
233 susp_used_pre_ce = susp_used;
234 }
235 }
236
237 /* A CE entry is needed */
238 if (working <= 0) {
239 CE = cd9660node_susp_create_node(SUSP_TYPE_SUSP,
240 SUSP_ENTRY_SUSP_CE, "CE", SUSP_LOC_ENTRY);
241 cd9660_susp_ce(CE, node);
242 /* This will automatically insert at the appropriate location */
243 if (pre_ce != NULL)
244 TAILQ_INSERT_AFTER(&node->head, pre_ce, CE, rr_ll);
245 else
246 TAILQ_INSERT_HEAD(&node->head, CE, rr_ll);
247 last = CE;
248 susp_used = susp_used_pre_ce + 28;
249 /* Count how much CA data is necessary */
250 for (temp = TAILQ_NEXT(last, rr_ll); temp != NULL;
251 temp = TAILQ_NEXT(temp, rr_ll)) {
252 ca_used += CD9660_SUSP_ENTRY_SIZE(temp);
253 }
254 }
255
256 /* An ST entry is needed */
257 if (node->su_tail_size > 0) {
258 ST = cd9660node_susp_create_node(SUSP_TYPE_SUSP,
259 SUSP_ENTRY_SUSP_ST, "ST", SUSP_LOC_ENTRY);
260 cd9660_susp_st(ST, node);
261 if (last != NULL)
262 TAILQ_INSERT_AFTER(&node->head, last, ST, rr_ll);
263 else
264 TAILQ_INSERT_HEAD(&node->head, ST, rr_ll);
265 last = ST;
266 susp_used += 4;
267 }
268 if (last != NULL)
269 last->last_in_suf = 1;
270
271 node->susp_entry_size = susp_used;
272 node->susp_entry_ce_length = ca_used;
273
274 diskStructure.susp_continuation_area_size += ca_used;
275 return 1;
276 }
277
278 /* See if a continuation entry is needed for each of the different types */
279 static int
280 cd9660_susp_handle_continuation(cd9660node *node)
281 {
282 assert (node != NULL);
283
284 /* Entry */
285 if (cd9660_susp_handle_continuation_common(
286 node,(int)(node->isoDirRecord->length[0])) < 0)
287 return 0;
288
289 return 1;
290 }
291
292 int
293 cd9660_susp_initialize_node(cd9660node *node)
294 {
295 struct ISO_SUSP_ATTRIBUTES *temp;
296
297 /*
298 * Requirements/notes:
299 * CE: is added for us where needed
300 * ST: not sure if it is even required, but if so, should be
301 * handled by the CE code
302 * PD: isnt needed (though might be added for testing)
303 * SP: is stored ONLY on the . record of the root directory
304 * ES: not sure
305 */
306
307 /* Check for root directory, add SP and ER if needed. */
308 if (node->type & CD9660_TYPE_DOT) {
309 if (node->parent == diskStructure.rootNode) {
310 temp = cd9660node_susp_create_node(SUSP_TYPE_SUSP,
311 SUSP_ENTRY_SUSP_SP, "SP", SUSP_LOC_DOT);
312 cd9660_susp_sp(temp, node);
313
314 /* Should be first entry. */
315 TAILQ_INSERT_HEAD(&node->head, temp, rr_ll);
316 }
317 }
318 return 1;
319 }
320
321 static void
322 cd9660_rrip_initialize_inode(cd9660node *node)
323 {
324 struct ISO_SUSP_ATTRIBUTES *attr;
325
326 /*
327 * Inode dependent values - this may change,
328 * but for now virtual files and directories do
329 * not have an inode structure
330 */
331
332 if ((node->node != NULL) && (node->node->inode != NULL)) {
333 /* PX - POSIX attributes */
334 attr = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
335 SUSP_ENTRY_RRIP_PX, "PX", SUSP_LOC_ENTRY);
336 cd9660node_rrip_px(attr, node->node);
337
338 TAILQ_INSERT_TAIL(&node->head, attr, rr_ll);
339
340 /* TF - timestamp */
341 attr = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
342 SUSP_ENTRY_RRIP_TF, "TF", SUSP_LOC_ENTRY);
343 cd9660node_rrip_tf(attr, node->node);
344 TAILQ_INSERT_TAIL(&node->head, attr, rr_ll);
345
346 /* SL - Symbolic link */
347 /* ?????????? Dan - why is this here? */
348 if (TAILQ_EMPTY(&node->cn_children) &&
349 node->node->inode != NULL &&
350 S_ISLNK(node->node->inode->st.st_mode))
351 cd9660_createSL(node);
352
353 /* PN - device number */
354 if (node->node->inode != NULL &&
355 ((S_ISCHR(node->node->inode->st.st_mode) ||
356 S_ISBLK(node->node->inode->st.st_mode)))) {
357 attr =
358 cd9660node_susp_create_node(SUSP_TYPE_RRIP,
359 SUSP_ENTRY_RRIP_PN, "PN",
360 SUSP_LOC_ENTRY);
361 cd9660node_rrip_pn(attr, node->node);
362 TAILQ_INSERT_TAIL(&node->head, attr, rr_ll);
363 }
364 }
365 }
366
367 int
368 cd9660_rrip_initialize_node(cd9660node *node, cd9660node *parent,
369 cd9660node *grandparent)
370 {
371 struct ISO_SUSP_ATTRIBUTES *current = NULL;
372
373 assert(node != NULL);
374
375 if (node->type & CD9660_TYPE_DOT) {
376 /*
377 * Handle ER - should be the only entry to appear on
378 * a "." record
379 */
380 if (node->parent == diskStructure.rootNode) {
381 cd9660_susp_ER(node, 1, SUSP_RRIP_ER_EXT_ID,
382 SUSP_RRIP_ER_EXT_DES, SUSP_RRIP_ER_EXT_SRC);
383 }
384 if (parent != NULL && parent->node != NULL &&
385 parent->node->inode != NULL) {
386 /* PX - POSIX attributes */
387 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
388 SUSP_ENTRY_RRIP_PX, "PX", SUSP_LOC_ENTRY);
389 cd9660node_rrip_px(current, parent->node);
390 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
391 }
392 } else if (node->type & CD9660_TYPE_DOTDOT) {
393 if (grandparent != NULL && grandparent->node != NULL &&
394 grandparent->node->inode != NULL) {
395 /* PX - POSIX attributes */
396 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
397 SUSP_ENTRY_RRIP_PX, "PX", SUSP_LOC_ENTRY);
398 cd9660node_rrip_px(current, grandparent->node);
399 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
400 }
401 } else {
402 cd9660_rrip_initialize_inode(node);
403
404 /*
405 * Not every node needs a NM set - only if the name is
406 * actually different. IE: If a file is TEST -> TEST,
407 * no NM. test -> TEST, need a NM
408 *
409 * The rr_moved_dir needs to be assigned a NM record as well.
410 */
411 if (node == diskStructure.rr_moved_dir) {
412 cd9660_rrip_add_NM(node, RRIP_DEFAULT_MOVE_DIR_NAME);
413 }
414 else if ((node->node != NULL) &&
415 ((strlen(node->node->name) !=
416 (int)node->isoDirRecord->name_len[0]) ||
417 (memcmp(node->node->name,node->isoDirRecord->name,
418 (int) node->isoDirRecord->name_len[0]) != 0))) {
419 cd9660_rrip_NM(node);
420 }
421
422
423
424 /* Rock ridge directory relocation code here. */
425
426 /* First handle the CL for the placeholder file. */
427 if (node->rr_relocated != NULL) {
428 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
429 SUSP_ENTRY_RRIP_CL, "CL", SUSP_LOC_ENTRY);
430 cd9660_rrip_CL(current, node);
431 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
432 }
433
434 /* Handle RE*/
435 if (node->rr_real_parent != NULL) {
436 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
437 SUSP_ENTRY_RRIP_RE, "RE", SUSP_LOC_ENTRY);
438 cd9660_rrip_RE(current,node);
439 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
440
441 /* Handle PL */
442 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
443 SUSP_ENTRY_RRIP_PL, "PL", SUSP_LOC_DOTDOT);
444 cd9660_rrip_PL(current,node->dot_dot_record);
445 TAILQ_INSERT_TAIL(&node->dot_dot_record->head, current,
446 rr_ll);
447 }
448 }
449 return 1;
450 }
451
452 struct ISO_SUSP_ATTRIBUTES*
453 cd9660node_susp_create_node(int susp_type, int entry_type, const char *type_id,
454 int write_loc)
455 {
456 struct ISO_SUSP_ATTRIBUTES* temp;
457
458 if ((temp = malloc(sizeof(struct ISO_SUSP_ATTRIBUTES))) == NULL) {
459 CD9660_MEM_ALLOC_ERROR("cd9660node_susp_create_node");
460 exit(1);
461 }
462
463 temp->susp_type = susp_type;
464 temp->entry_type = entry_type;
465 temp->last_in_suf = 0;
466 /* Phase this out */
467 temp->type_of[0] = type_id[0];
468 temp->type_of[1] = type_id[1];
469 temp->write_location = write_loc;
470
471 /*
472 * Since the first four bytes is common, lets go ahead and
473 * set the type identifier, since we are passing that to this
474 * function anyhow.
475 */
476 temp->attr.su_entry.SP.h.type[0] = type_id[0];
477 temp->attr.su_entry.SP.h.type[1] = type_id[1];
478 return temp;
479 }
480
481 int
482 cd9660_rrip_PL(struct ISO_SUSP_ATTRIBUTES* p, cd9660node *node __unused)
483 {
484 p->attr.rr_entry.PL.h.length[0] = 12;
485 p->attr.rr_entry.PL.h.version[0] = 1;
486 return 1;
487 }
488
489 int
490 cd9660_rrip_CL(struct ISO_SUSP_ATTRIBUTES *p, cd9660node *node __unused)
491 {
492 p->attr.rr_entry.CL.h.length[0] = 12;
493 p->attr.rr_entry.CL.h.version[0] = 1;
494 return 1;
495 }
496
497 int
498 cd9660_rrip_RE(struct ISO_SUSP_ATTRIBUTES *p, cd9660node *node __unused)
499 {
500 p->attr.rr_entry.RE.h.length[0] = 4;
501 p->attr.rr_entry.RE.h.version[0] = 1;
502 return 1;
503 }
504
505 void
506 cd9660_createSL(cd9660node *node)
507 {
508 struct ISO_SUSP_ATTRIBUTES* current;
509 int path_count, dir_count, done, i, j, dir_copied;
510 char temp_cr[255];
511 char temp_sl[255]; /* used in copying continuation entry*/
512 char* sl_ptr;
513
514 sl_ptr = node->node->symlink;
515
516 done = 0;
517 path_count = 0;
518 dir_count = 0;
519 dir_copied = 0;
520 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
521 SUSP_ENTRY_RRIP_SL, "SL", SUSP_LOC_ENTRY);
522
523 current->attr.rr_entry.SL.h.version[0] = 1;
524 current->attr.rr_entry.SL.flags[0] = SL_FLAGS_NONE;
525
526 if (*sl_ptr == '/') {
527 temp_cr[0] = SL_FLAGS_ROOT;
528 temp_cr[1] = 0;
529 memcpy(current->attr.rr_entry.SL.component + path_count,
530 temp_cr, 2);
531 path_count += 2;
532 sl_ptr++;
533 }
534
535 for (i = 0; i < (dir_count + 2); i++)
536 temp_cr[i] = '\0';
537
538 while (!done) {
539 while ((*sl_ptr != '/') && (*sl_ptr != '\0')) {
540 dir_copied = 1;
541 if (*sl_ptr == '.') {
542 if ((*(sl_ptr + 1) == '/') || (*(sl_ptr + 1)
543 == '\0')) {
544 temp_cr[0] = SL_FLAGS_CURRENT;
545 sl_ptr++;
546 } else if(*(sl_ptr + 1) == '.') {
547 if ((*(sl_ptr + 2) == '/') ||
548 (*(sl_ptr + 2) == '\0')) {
549 temp_cr[0] = SL_FLAGS_PARENT;
550 sl_ptr += 2;
551 }
552 } else {
553 temp_cr[dir_count+2] = *sl_ptr;
554 sl_ptr++;
555 dir_count++;
556 }
557 } else {
558 temp_cr[dir_count + 2] = *sl_ptr;
559 sl_ptr++;
560 dir_count++;
561 }
562 }
563
564 if ((path_count + dir_count) >= 249) {
565 current->attr.rr_entry.SL.flags[0] |= SL_FLAGS_CONTINUE;
566
567 j = 0;
568
569 if (path_count <= 249) {
570 while(j != (249 - path_count)) {
571 temp_sl[j] = temp_cr[j];
572 j++;
573 }
574 temp_sl[0] = SL_FLAGS_CONTINUE;
575 temp_sl[1] = j - 2;
576 memcpy(
577 current->attr.rr_entry.SL.component +
578 path_count,
579 temp_sl, j);
580 }
581
582 path_count += j;
583 current->attr.rr_entry.SL.h.length[0] = path_count + 5;
584 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
585 current= cd9660node_susp_create_node(SUSP_TYPE_RRIP,
586 SUSP_ENTRY_RRIP_SL, "SL", SUSP_LOC_ENTRY);
587 current->attr.rr_entry.SL.h.version[0] = 1;
588 current->attr.rr_entry.SL.flags[0] = SL_FLAGS_NONE;
589
590 path_count = 0;
591
592 if (dir_count > 2) {
593 while (j != dir_count + 2) {
594 current->attr.rr_entry.SL.component[
595 path_count + 2] = temp_cr[j];
596 j++;
597 path_count++;
598 }
599 current->attr.rr_entry.SL.component[1]
600 = path_count;
601 path_count+= 2;
602 } else {
603 while(j != dir_count) {
604 current->attr.rr_entry.SL.component[
605 path_count+2] = temp_cr[j];
606 j++;
607 path_count++;
608 }
609 }
610 } else {
611 if (dir_copied == 1) {
612 temp_cr[1] = dir_count;
613 memcpy(current->attr.rr_entry.SL.component +
614 path_count,
615 temp_cr, dir_count + 2);
616 path_count += dir_count + 2;
617 }
618 }
619
620 if (*sl_ptr == '\0') {
621 done = 1;
622 current->attr.rr_entry.SL.h.length[0] = path_count + 5;
623 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
624 } else {
625 sl_ptr++;
626 dir_count = 0;
627 dir_copied = 0;
628 for(i = 0; i < 255; i++) {
629 temp_cr[i] = '\0';
630 }
631 }
632 }
633 }
634
635 int
636 cd9660node_rrip_px(struct ISO_SUSP_ATTRIBUTES *v, fsnode *pxinfo)
637 {
638 v->attr.rr_entry.PX.h.length[0] = 36;
639 v->attr.rr_entry.PX.h.version[0] = 1;
640 cd9660_bothendian_dword(pxinfo->inode->st.st_mode,
641 v->attr.rr_entry.PX.mode);
642 cd9660_bothendian_dword(pxinfo->inode->st.st_nlink,
643 v->attr.rr_entry.PX.links);
644 cd9660_bothendian_dword(pxinfo->inode->st.st_uid,
645 v->attr.rr_entry.PX.uid);
646 cd9660_bothendian_dword(pxinfo->inode->st.st_gid,
647 v->attr.rr_entry.PX.gid);
648
649 /* Ignoring the serial number for now */
650 return 1;
651 }
652
653 int
654 cd9660node_rrip_pn(struct ISO_SUSP_ATTRIBUTES *pn_field, fsnode *fnode)
655 {
656 pn_field->attr.rr_entry.PN.h.length[0] = 20;
657 pn_field->attr.rr_entry.PN.h.version[0] = 1;
658
659 if (sizeof (fnode->inode->st.st_dev) > 32)
660 cd9660_bothendian_dword((uint64_t)fnode->inode->st.st_dev >> 32,
661 pn_field->attr.rr_entry.PN.high);
662 else
663 cd9660_bothendian_dword(0, pn_field->attr.rr_entry.PN.high);
664
665 cd9660_bothendian_dword(fnode->inode->st.st_dev & 0xffffffff,
666 pn_field->attr.rr_entry.PN.low);
667 return 1;
668 }
669
670 #if 0
671 int
672 cd9660node_rrip_nm(struct ISO_SUSP_ATTRIBUTES *p, cd9660node *file_node)
673 {
674 int nm_length = strlen(file_node->isoDirRecord->name) + 5;
675 p->attr.rr_entry.NM.h.type[0] = 'N';
676 p->attr.rr_entry.NM.h.type[1] = 'M';
677 sprintf(p->attr.rr_entry.NM.altname, "%s", file_node->isoDirRecord->name);
678 p->attr.rr_entry.NM.h.length[0] = (unsigned char)nm_length;
679 p->attr.rr_entry.NM.h.version[0] = (unsigned char)1;
680 p->attr.rr_entry.NM.flags[0] = (unsigned char) NM_PARENT;
681 return 1;
682 }
683 #endif
684
685 int
686 cd9660node_rrip_tf(struct ISO_SUSP_ATTRIBUTES *p, fsnode *_node)
687 {
688 p->attr.rr_entry.TF.flags[0] = TF_MODIFY | TF_ACCESS | TF_ATTRIBUTES;
689 p->attr.rr_entry.TF.h.length[0] = 4;
690 p->attr.rr_entry.TF.h.version[0] = 1;
691
692 /*
693 * Need to add creation time, backup time,
694 * expiration time, and effective time.
695 */
696
697 cd9660_time_915(p->attr.rr_entry.TF.timestamp,
698 _node->inode->st.st_atime);
699 p->attr.rr_entry.TF.h.length[0] += 7;
700
701 cd9660_time_915(p->attr.rr_entry.TF.timestamp + 7,
702 _node->inode->st.st_mtime);
703 p->attr.rr_entry.TF.h.length[0] += 7;
704
705 cd9660_time_915(p->attr.rr_entry.TF.timestamp + 14,
706 _node->inode->st.st_ctime);
707 p->attr.rr_entry.TF.h.length[0] += 7;
708 return 1;
709 }
710
711 int
712 cd9660_susp_sp(struct ISO_SUSP_ATTRIBUTES *p, cd9660node *spinfo __unused)
713 {
714 p->attr.su_entry.SP.h.length[0] = 7;
715 p->attr.su_entry.SP.h.version[0] = 1;
716 p->attr.su_entry.SP.check[0] = 0xBE;
717 p->attr.su_entry.SP.check[1] = 0xEF;
718 p->attr.su_entry.SP.len_skp[0] = 0;
719 return 1;
720 }
721
722 int
723 cd9660_susp_st(struct ISO_SUSP_ATTRIBUTES *p, cd9660node *stinfo __unused)
724 {
725 p->attr.su_entry.ST.h.type[0] = 'S';
726 p->attr.su_entry.ST.h.type[1] = 'T';
727 p->attr.su_entry.ST.h.length[0] = 4;
728 p->attr.su_entry.ST.h.version[0] = 1;
729 return 1;
730 }
731
732 int
733 cd9660_susp_ce(struct ISO_SUSP_ATTRIBUTES *p, cd9660node *spinfo __unused)
734 {
735 p->attr.su_entry.CE.h.length[0] = 28;
736 p->attr.su_entry.CE.h.version[0] = 1;
737 /* Other attributes dont matter right now, will be updated later */
738 return 1;
739 }
740
741 int
742 cd9660_susp_pd(struct ISO_SUSP_ATTRIBUTES *p __unused, int length __unused)
743 {
744 return 1;
745 }
746
747 void
748 cd9660_rrip_add_NM(cd9660node *node, const char *name)
749 {
750 int working,len;
751 const char *p;
752 struct ISO_SUSP_ATTRIBUTES *r;
753
754 /*
755 * Each NM record has 254 byes to work with. This means that
756 * the name data itself only has 249 bytes to work with. So, a
757 * name with 251 characters would require two nm records.
758 */
759 p = name;
760 working = 1;
761 while (working) {
762 r = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
763 SUSP_ENTRY_RRIP_NM, "NM", SUSP_LOC_ENTRY);
764 r->attr.rr_entry.NM.h.version[0] = 1;
765 r->attr.rr_entry.NM.flags[0] = RRIP_NM_FLAGS_NONE;
766 len = strlen(p);
767
768 if (len > 249) {
769 len = 249;
770 r->attr.rr_entry.NM.flags[0] = RRIP_NM_FLAGS_CONTINUE;
771 } else {
772 working = 0;
773 }
774 memcpy(r->attr.rr_entry.NM.altname, p, len);
775 r->attr.rr_entry.NM.h.length[0] = 5 + len;
776
777 TAILQ_INSERT_TAIL(&node->head, r, rr_ll);
778
779 p += len;
780 }
781 }
782
783 void
784 cd9660_rrip_NM(cd9660node *node)
785 {
786 cd9660_rrip_add_NM(node, node->node->name);
787 }
788
789 struct ISO_SUSP_ATTRIBUTES*
790 cd9660_susp_ER(cd9660node *node,
791 u_char ext_version, const char* ext_id, const char* ext_des,
792 const char* ext_src)
793 {
794 int l;
795 struct ISO_SUSP_ATTRIBUTES *r;
796
797 r = cd9660node_susp_create_node(SUSP_TYPE_SUSP,
798 SUSP_ENTRY_SUSP_ER, "ER", SUSP_LOC_DOT);
799
800 /* Fixed data is 8 bytes */
801 r->attr.su_entry.ER.h.length[0] = 8;
802 r->attr.su_entry.ER.h.version[0] = 1;
803
804 r->attr.su_entry.ER.len_id[0] = (u_char)strlen(ext_id);
805 r->attr.su_entry.ER.len_des[0] = (u_char)strlen(ext_des);
806 r->attr.su_entry.ER.len_src[0] = (u_char)strlen(ext_src);
807
808 l = r->attr.su_entry.ER.len_id[0] +
809 r->attr.su_entry.ER.len_src[0] +
810 r->attr.su_entry.ER.len_des[0];
811
812 /* Everything must fit. */
813 assert(l + r->attr.su_entry.ER.h.length[0] <= 254);
814
815 r->attr.su_entry.ER.h.length[0] += (u_char)l;
816
817
818 r->attr.su_entry.ER.ext_ver[0] = ext_version;
819 memcpy(r->attr.su_entry.ER.ext_data, ext_id,
820 (int)r->attr.su_entry.ER.len_id[0]);
821 l = (int) r->attr.su_entry.ER.len_id[0];
822 memcpy(r->attr.su_entry.ER.ext_data + l,ext_des,
823 (int)r->attr.su_entry.ER.len_des[0]);
824
825 l += (int)r->attr.su_entry.ER.len_des[0];
826 memcpy(r->attr.su_entry.ER.ext_data + l,ext_src,
827 (int)r->attr.su_entry.ER.len_src[0]);
828
829 TAILQ_INSERT_TAIL(&node->head, r, rr_ll);
830 return r;
831 }
832
833 struct ISO_SUSP_ATTRIBUTES*
834 cd9660_susp_ES(struct ISO_SUSP_ATTRIBUTES *last __unused, cd9660node *node __unused)
835 {
836 return NULL;
837 }
838