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