]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/filed/restore.c
Apply Preben 'Peppe' Guldberg <peppe@wielders.org>
[bacula/bacula] / bacula / src / filed / restore.c
index eb4afe2686505c58dd66bf101d8377e1a246603c..b5db573bd3839460d92841384a5ee3b66f86e512 100644 (file)
@@ -7,7 +7,7 @@
  *
  */
 /*
-   Copyright (C) 2000-2003 Kern Sibbald and John Walker
+   Copyright (C) 2000-2004 Kern Sibbald and John Walker
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
 #include "bacula.h"
 #include "filed.h"
 
+#ifdef HAVE_ACL
+#include <sys/acl.h>
+#include <acl/libacl.h>
+#endif
+
+#ifdef HAVE_DARWIN_OS
+#include <sys/attr.h>
+#endif
+
 /* Data received from Storage Daemon */
 static char rec_header[] = "rechdr %ld %ld %ld %ld %ld";
 
 /* Forward referenced functions */
 #ifdef HAVE_LIBZ
-static char *zlib_strerror(int stat);
+static const char *zlib_strerror(int stat);
 #endif
 
 #define RETRY 10                     /* retry wait time */
 
-/* 
+#ifdef HAVE_DARWIN_OS
+/* helper routine for closing resource forks */
+int bclose_chksize(JCR *jcr, BFILE *bfd, off_t osize)
+{
+   char ec1[50], ec2[50];
+   off_t fsize;
+
+   fsize = blseek(bfd, 0, SEEK_CUR);
+   bclose(bfd);                              /* first close file */
+   if (fsize > 0 && fsize != osize) {
+      Jmsg3(jcr, M_ERROR, 0, _("File size of resource fork for restored file %s not correct. Original %s, restored %s.\n"),
+           jcr->last_fname, edit_uint64(osize, ec1),
+           edit_uint64(fsize, ec2));
+      return -1;
+   }
+   return 0;
+}
+#endif
+
+/*
  * Restore the requested files.
- * 
+ *
  */
 void do_restore(JCR *jcr)
 {
@@ -59,15 +87,41 @@ void do_restore(JCR *jcr)
    uint64_t fileAddr = 0;            /* file write address */
    int non_support_data = 0;
    int non_support_attr = 0;
+   int non_support_rsrc = 0;
+   int non_support_finfo = 0;
+   int non_support_acl = 0;
    int prog_name_msg = 0;
    ATTR *attr;
-   
+#ifdef HAVE_ACL
+   acl_t acl;
+#endif
+   BFILE rsrc_bfd;                   /* we often check if it is open */
+#ifdef HAVE_DARWIN_OS
+   off_t rsrcAddr = 0;
+   off_t rsrc_len;                    /* original length of resource fork */
+
+   /* TODO: initialise attrList once elsewhere? */
+   struct attrlist attrList;
+   memset(&attrList, 0, sizeof(attrList));
+   attrList.bitmapcount = ATTR_BIT_MAP_COUNT;
+   attrList.commonattr = ATTR_CMN_FNDRINFO;
+#endif
+   binit(&rsrc_bfd);
 
    binit(&bfd);
    sd = jcr->store_bsock;
    set_jcr_job_status(jcr, JS_Running);
 
-   if (!bnet_set_buffer_size(sd, MAX_NETWORK_BUFFER_SIZE, BNET_SETBUF_READ)) {
+   LockRes();
+   CLIENT *client = (CLIENT *)GetNextRes(R_CLIENT, NULL);
+   UnlockRes();
+   uint32_t buf_size;
+   if (client) {
+      buf_size = client->max_network_buffer_size;
+   } else {
+      buf_size = 0;                  /* use default */
+   }
+   if (!bnet_set_buffer_size(sd, buf_size, BNET_SETBUF_WRITE)) {
       set_jcr_job_status(jcr, JS_ErrorTerminated);
       return;
    }
@@ -80,36 +134,39 @@ void do_restore(JCR *jcr)
    jcr->compress_buf = (char *)bmalloc(compress_buf_size);
 #endif
 
-   /* 
-    * Get a record from the Storage daemon. We are guaranteed to 
+   /*
+    * Get a record from the Storage daemon. We are guaranteed to
     *  receive records in the following order:
     *  1. Stream record header
     *  2. Stream data
     *       a. Attributes (Unix or Win32)
     *   or  b. File data for the file
-    *   or  c. Possibly MD5 or SHA1 record
+    *   or  c. Resource fork
+    *   or  d. Finder info
+    *   or  e. ACLs
+    *   or  f. Possibly MD5 or SHA1 record
     *  3. Repeat step 1
     */
    while (bget_msg(sd) >= 0 && !job_canceled(jcr)) {
       /*
-       * First we expect a Stream Record Header 
+       * First we expect a Stream Record Header
        */
       if (sscanf(sd->msg, rec_header, &VolSessionId, &VolSessionTime, &file_index,
          &stream, &size) != 5) {
-         Jmsg1(jcr, M_FATAL, 0, _("Record header scan error: %s\n"), sd->msg);
+        Jmsg1(jcr, M_FATAL, 0, _("Record header scan error: %s\n"), sd->msg);
         goto bail_out;
       }
       Dmsg2(30, "Got hdr: FilInx=%d Stream=%d.\n", file_index, stream);
 
-      /* 
+      /*
        * Now we expect the Stream Data
        */
       if (bget_msg(sd) < 0) {
-         Jmsg1(jcr, M_FATAL, 0, _("Data record error. ERR=%s\n"), bnet_strerror(sd));
+        Jmsg1(jcr, M_FATAL, 0, _("Data record error. ERR=%s\n"), bnet_strerror(sd));
         goto bail_out;
       }
       if (size != (uint32_t)sd->msglen) {
-         Jmsg2(jcr, M_FATAL, 0, _("Actual data size %d not same as header %d\n"), sd->msglen, size);
+        Jmsg2(jcr, M_FATAL, 0, _("Actual data size %d not same as header %d\n"), sd->msglen, size);
         goto bail_out;
       }
       Dmsg1(30, "Got stream data, len=%d\n", sd->msglen);
@@ -118,38 +175,45 @@ void do_restore(JCR *jcr)
       switch (stream) {
       case STREAM_UNIX_ATTRIBUTES:
       case STREAM_UNIX_ATTRIBUTES_EX:
-
-         Dmsg1(30, "Stream=Unix Attributes. extract=%d\n", extract);
+        Dmsg1(30, "Stream=Unix Attributes. extract=%d\n", extract);
         /* If extracting, it was from previous stream, so
          * close the output file.
          */
         if (extract) {
-           if (!is_bopen(&bfd)) {
-               Jmsg0(jcr, M_ERROR, 0, _("Logic error output file should be open\n"));
+           if (!is_bopen(&bfd) && !is_bopen(&rsrc_bfd)) {
+              Jmsg0(jcr, M_ERROR, 0, _("Logic error output file should be open\n"));
+           }
+#ifdef HAVE_DARWIN_OS
+           if (is_bopen(&rsrc_bfd)) {
+              bclose_chksize(jcr, &rsrc_bfd, rsrc_len);
+           }
+#endif
+           if (is_bopen(&bfd)) {
+              set_attributes(jcr, attr, &bfd);
            }
-           set_attributes(jcr, attr, &bfd);
            extract = false;
-            Dmsg0(30, "Stop extracting.\n");
+           Dmsg0(30, "Stop extracting.\n");
         }
 
+
         if (!unpack_attributes_record(jcr, stream, sd->msg, attr)) {
            goto bail_out;
         }
         if (file_index != attr->file_index) {
-            Jmsg(jcr, M_FATAL, 0, _("Record header file index %ld not equal record index %ld\n"),
+           Jmsg(jcr, M_FATAL, 0, _("Record header file index %ld not equal record index %ld\n"),
                 file_index, attr->file_index);
-            Dmsg0(100, "File index error\n");
+           Dmsg0(100, "File index error\n");
            goto bail_out;
         }
-           
-         Dmsg3(200, "File %s\nattrib=%s\nattribsEx=%s\n", attr->fname, 
+
+        Dmsg3(200, "File %s\nattrib=%s\nattribsEx=%s\n", attr->fname,
               attr->attr, attr->attrEx);
 
         attr->data_stream = decode_stat(attr->attr, &attr->statp, &attr->LinkFI);
 
         if (!is_stream_supported(attr->data_stream)) {
            if (!non_support_data++) {
-               Jmsg(jcr, M_ERROR, 0, _("%s stream not supported on this Client.\n"),
+              Jmsg(jcr, M_ERROR, 0, _("%s stream not supported on this Client.\n"),
                  stream_to_ascii(attr->data_stream));
            }
            continue;
@@ -157,9 +221,13 @@ void do_restore(JCR *jcr)
 
         build_attr_output_fnames(jcr, attr);
 
+#ifdef HAVE_DARWIN_OS
+        from_base64(&rsrc_len, attr->attrEx);
+#endif
+
         jcr->num_files_examined++;
 
-         Dmsg1(30, "Outfile=%s\n", attr->ofname);
+        Dmsg1(30, "Outfile=%s\n", attr->ofname);
         extract = false;
         stat = create_file(jcr, attr, &bfd, jcr->replace);
         switch (stat) {
@@ -168,32 +236,37 @@ void do_restore(JCR *jcr)
            break;
         case CF_EXTRACT:
            extract = true;
-           P(jcr->mutex);
-           pm_strcpy(&jcr->last_fname, attr->ofname);
-           V(jcr->mutex);
-           jcr->JobFiles++;
-           fileAddr = 0;
-           print_ls_output(jcr, attr);
-           /* Set attributes after file extracted */
-           break;
+           /* FALLTHROUGH */
         case CF_CREATED:
            P(jcr->mutex);
-           pm_strcpy(&jcr->last_fname, attr->ofname);
+           pm_strcpy(jcr->last_fname, attr->ofname);
            V(jcr->mutex);
            jcr->JobFiles++;
            fileAddr = 0;
            print_ls_output(jcr, attr);
-           /* set attributes now because file will not be extracted */
-           set_attributes(jcr, attr, &bfd);
+           if (!extract) {
+              /* set attributes now because file will not be extracted */
+              set_attributes(jcr, attr, &bfd);
+           }
+#ifdef HAVE_DARWIN_OS
+           if (rsrc_len > 0) {
+              rsrcAddr = 0;
+              if (bopen_rsrc(&rsrc_bfd, jcr->last_fname, O_WRONLY | O_TRUNC | O_BINARY, 0) < 0) {
+                 Jmsg(jcr, M_ERROR, 0, _("     Cannot open resource fork for %s"), jcr->last_fname);
+              } else {
+                 Dmsg0(30, "Restoring resource fork");
+                 extract = true;
+              }
+           }
+#endif
            break;
-        }  
+        }
         break;
 
       /* Data stream */
       case STREAM_FILE_DATA:
-      case STREAM_SPARSE_DATA: 
-      case STREAM_WIN32_DATA:  
-
+      case STREAM_SPARSE_DATA:
+      case STREAM_WIN32_DATA:
         if (extract) {
            if (stream == STREAM_SPARSE_DATA) {
               ser_declare;
@@ -207,10 +280,15 @@ void do_restore(JCR *jcr)
               if (fileAddr != faddr) {
                  fileAddr = faddr;
                  if (blseek(&bfd, (off_t)fileAddr, SEEK_SET) < 0) {
-                     Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
-                        edit_uint64(fileAddr, ec1), attr->ofname, berror(&bfd));
+                    berrno be;
+                    be.set_errno(bfd.berrno);
+                    Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
+                        edit_uint64(fileAddr, ec1), attr->ofname, be.strerror());
                     extract = false;
                     bclose(&bfd);
+                    if (is_bopen(&rsrc_bfd)) {
+                       bclose(&rsrc_bfd);
+                    }
                     continue;
                  }
               }
@@ -218,14 +296,20 @@ void do_restore(JCR *jcr)
               wbuf = sd->msg;
               wsize = sd->msglen;
            }
-            Dmsg2(30, "Write %u bytes, total before write=%u\n", wsize, total);
+           Dmsg2(30, "Write %u bytes, total before write=%u\n", wsize, total);
            if ((uint32_t)bwrite(&bfd, wbuf, wsize) != wsize) {
-               Dmsg0(0, "===Write error===\n");
-               Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: ERR=%s\n"), attr->ofname, berror(&bfd));
+              Dmsg0(0, "===Write error===\n");
+              berrno be;
+              be.set_errno(bfd.berrno);
+              Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: ERR=%s\n"), attr->ofname,
+                    be.strerror());
               extract = false;
               bclose(&bfd);
+              if (is_bopen(&rsrc_bfd)) {
+                 bclose(&rsrc_bfd);
+              }
               continue;
-           } 
+           }
            total += wsize;
            jcr->JobBytes += wsize;
            jcr->ReadBytes += wsize;
@@ -235,8 +319,8 @@ void do_restore(JCR *jcr)
 
       /* GZIP data stream */
       case STREAM_GZIP_DATA:
-      case STREAM_SPARSE_GZIP_DATA:  
-      case STREAM_WIN32_GZIP_DATA:  
+      case STREAM_SPARSE_GZIP_DATA:
+      case STREAM_WIN32_GZIP_DATA:
 #ifdef HAVE_LIBZ
         if (extract) {
            uLong compress_len;
@@ -253,10 +337,15 @@ void do_restore(JCR *jcr)
               if (fileAddr != faddr) {
                  fileAddr = faddr;
                  if (blseek(&bfd, (off_t)fileAddr, SEEK_SET) < 0) {
-                     Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
-                        edit_uint64(fileAddr, ec1), attr->ofname, berror(&bfd));
+                    berrno be;
+                    be.set_errno(bfd.berrno);
+                    Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
+                        edit_uint64(fileAddr, ec1), attr->ofname, be.strerror());
                     extract = false;
                     bclose(&bfd);
+                    if (is_bopen(&rsrc_bfd)) {
+                       bclose(&rsrc_bfd);
+                    }
                     continue;
                  }
               }
@@ -265,22 +354,30 @@ void do_restore(JCR *jcr)
               wsize = sd->msglen;
            }
            compress_len = compress_buf_size;
-            Dmsg2(100, "Comp_len=%d msglen=%d\n", compress_len, wsize);
-           if ((stat=uncompress((Byte *)jcr->compress_buf, &compress_len, 
+           Dmsg2(100, "Comp_len=%d msglen=%d\n", compress_len, wsize);
+           if ((stat=uncompress((Byte *)jcr->compress_buf, &compress_len,
                  (const Byte *)wbuf, (uLong)wsize)) != Z_OK) {
-               Jmsg(jcr, M_ERROR, 0, _("Uncompression error on file %s. ERR=%s\n"), 
+              Jmsg(jcr, M_ERROR, 0, _("Uncompression error on file %s. ERR=%s\n"),
                  attr->ofname, zlib_strerror(stat));
               extract = false;
               bclose(&bfd);
+              if (is_bopen(&rsrc_bfd)) {
+                 bclose(&rsrc_bfd);
+              }
               continue;
            }
 
-            Dmsg2(100, "Write uncompressed %d bytes, total before write=%d\n", compress_len, total);
+           Dmsg2(100, "Write uncompressed %d bytes, total before write=%d\n", compress_len, total);
            if ((uLong)bwrite(&bfd, jcr->compress_buf, compress_len) != compress_len) {
-               Dmsg0(0, "===Write error===\n");
-               Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: %s\n"), attr->ofname, berror(&bfd));
+              Dmsg0(0, "===Write error===\n");
+              berrno be;
+              be.set_errno(bfd.berrno);
+              Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: %s\n"), attr->ofname, be.strerror());
               extract = false;
               bclose(&bfd);
+              if (is_bopen(&rsrc_bfd)) {
+                 bclose(&rsrc_bfd);
+              }
               continue;
            }
            total += compress_len;
@@ -290,13 +387,112 @@ void do_restore(JCR *jcr)
         }
 #else
         if (extract) {
-            Jmsg(jcr, M_ERROR, 0, _("GZIP data stream found, but GZIP not configured!\n"));
+           Jmsg(jcr, M_ERROR, 0, _("GZIP data stream found, but GZIP not configured!\n"));
            extract = false;
            bclose(&bfd);
+           if (is_bopen(&rsrc_bfd)) {
+              bclose(&rsrc_bfd);
+           }
+           continue;
+        }
+#endif
+        break;
+
+      /* Resource fork stream - only recorded after a file to be restored */
+      /* Silently ignore if we cannot write - we already reported that */
+      case STREAM_MACOS_FORK_DATA:
+#ifdef HAVE_DARWIN_OS
+        if (is_bopen(&rsrc_bfd) && sd->msglen) {
+           Dmsg2(30, "Write %u bytes, total before write=%u\n", sd->msglen, total);
+           if (bwrite(&rsrc_bfd, sd->msg, sd->msglen) != sd->msglen) {
+              Dmsg0(0, "===Write error===\n");
+              berrno be;
+              be.set_errno(rsrc_bfd.berrno);
+              Jmsg2(jcr, M_ERROR, 0, _("Write error on resource fork of %s: ERR=%s\n"), jcr->last_fname,
+                    be.strerror());
+              extract = false;
+              if (is_bopen(&bfd)) {
+                 bclose(&bfd);
+              }
+              bclose(&rsrc_bfd);
+              continue;
+           }
+           total += sd->msglen;
+           jcr->JobBytes += sd->msglen;
+           jcr->ReadBytes += sd->msglen;
+           rsrcAddr += sd->msglen;
+        }
+        break;
+#else
+        non_support_rsrc++;
+#endif
+
+      case STREAM_HFSPLUS_ATTRIBUTES:
+#ifdef HAVE_DARWIN_OS
+        Dmsg0(30, "Restoring Finder Info");
+        if (sd->msglen != 32) {
+           Jmsg(jcr, M_ERROR, 0, _("     Invalid length of Finder Info (got %d, not 32)"), sd->msglen);
            continue;
         }
+        if (setattrlist(jcr->last_fname, &attrList, sd->msg, sd->msglen, 0) != 0) {
+           Jmsg(jcr, M_ERROR, 0, _("     Could not set Finder Info on %s"), jcr->last_fname);
+           continue;
+        }
+        break;
+#else
+        non_support_finfo++;
+#endif
+/*** FIXME ***/
+case STREAM_UNIX_ATTRIBUTES_ACCESS_ACL:
+#ifdef HAVE_ACL
+        /* Recover Acess ACL from stream and check it */
+        acl = acl_from_text(sd->msg);
+        if (acl_valid(acl) != 0) {
+           Jmsg1(jcr, M_WARNING, 0, "Failure in the ACL of %s! FD is not able to restore it!\n", jcr->last_fname);
+           acl_free(acl);
+        }
+
+        /* Try to restore ACL */
+        if (attr->type == FT_DIREND) {
+           /* Directory */
+           if (acl_set_file(jcr->last_fname, ACL_TYPE_ACCESS, acl) != 0) {
+              Jmsg1(jcr, M_WARNING, 0, "Error! Can't restore ACL of directory: %s! Maybe system does not support ACLs!\n", jcr->last_fname);
+           }
+        /* File or Link */
+        } else if (acl_set_file(jcr->last_fname, ACL_TYPE_ACCESS, acl) != 0) {
+           Jmsg1(jcr, M_WARNING, 0, "Error! Can't restore ACL of file: %s! Maybe system does not support ACLs!\n", jcr->last_fname);
+        }
+        acl_free(acl);
+        Dmsg1(200, "ACL of file: %s successfully restored!", jcr->last_fname);
+        break;
+#else
+        non_support_acl++;
+        break;                       /* unconfigured, ignore */
 #endif
+      case STREAM_UNIX_ATTRIBUTES_DEFAULT_ACL:
+#ifdef HAVE_ACL
+      /* Recover Default ACL from stream and check it */
+        acl = acl_from_text(sd->msg);
+        if (acl_valid(acl) != 0) {
+           Jmsg1(jcr, M_WARNING, 0, "Failure in the Default ACL of %s! FD is not able to restore it!\n", jcr->last_fname);
+           acl_free(acl);
+        }
+
+        /* Try to restore ACL */
+        if (attr->type == FT_DIREND) {
+           /* Directory */
+           if (acl_set_file(jcr->last_fname, ACL_TYPE_DEFAULT, acl) != 0) {
+              Jmsg1(jcr, M_WARNING, 0, "Error! Can't restore Default ACL of directory: %s! Maybe system does not support ACLs!\n", jcr->last_fname);
+            }
+        }
+        acl_free(acl);
+        Dmsg1(200, "Default ACL of file: %s successfully restored!", jcr->last_fname);
         break;
+#else
+        non_support_acl++;
+        break;                       /* unconfigured, ignore */
+#endif
+/*** FIXME ***/
 
       case STREAM_MD5_SIGNATURE:
       case STREAM_SHA1_SIGNATURE:
@@ -305,7 +501,7 @@ void do_restore(JCR *jcr)
       case STREAM_PROGRAM_NAMES:
       case STREAM_PROGRAM_DATA:
         if (!prog_name_msg) {
-            Pmsg0(000, "Got Program Name or Data Stream. Ignored.\n");
+           Pmsg0(000, "Got Program Name or Data Stream. Ignored.\n");
            prog_name_msg++;
         }
         break;
@@ -313,22 +509,22 @@ void do_restore(JCR *jcr)
       default:
         /* If extracting, wierd stream (not 1 or 2), close output file anyway */
         if (extract) {
-            Dmsg1(30, "Found wierd stream %d\n", stream);
+           Dmsg1(30, "Found wierd stream %d\n", stream);
            if (!is_bopen(&bfd)) {
-               Jmsg0(jcr, M_ERROR, 0, _("Logic error output file should be open but is not.\n"));
+              Jmsg0(jcr, M_ERROR, 0, _("Logic error output file should be open but is not.\n"));
            }
            set_attributes(jcr, attr, &bfd);
            extract = false;
         }
-         Jmsg(jcr, M_ERROR, 0, _("Unknown stream=%d ignored. This shouldn't happen!\n"), stream);
-         Dmsg2(0, "None of above!!! stream=%d data=%s\n", stream,sd->msg);
+        Jmsg(jcr, M_ERROR, 0, _("Unknown stream=%d ignored. This shouldn't happen!\n"), stream);
+        Dmsg2(0, "None of above!!! stream=%d data=%s\n", stream,sd->msg);
         break;
       } /* end switch(stream) */
 
    } /* end while get_msg() */
 
    /* If output file is still open, it was the last one in the
-    * archive since we just hit an end of file, so close the file. 
+    * archive since we just hit an end of file, so close the file.
     */
    if (is_bopen(&bfd)) {
       set_attributes(jcr, attr, &bfd);
@@ -343,6 +539,11 @@ ok_out:
       free(jcr->compress_buf);
       jcr->compress_buf = NULL;
    }
+#ifdef HAVE_DARWIN_OS
+   if (is_bopen(&rsrc_bfd)) {
+      bclose_chksize(jcr, &rsrc_bfd, rsrc_len);
+   }
+#endif
    bclose(&bfd);
    free_attr(attr);
    Dmsg2(10, "End Do Restore. Files=%d Bytes=%" lld "\n", jcr->JobFiles,
@@ -351,13 +552,23 @@ ok_out:
       Jmsg(jcr, M_ERROR, 0, _("%d non-supported data streams and %d non-supported attrib streams ignored.\n"),
         non_support_data, non_support_attr);
    }
-}         
+   if (non_support_rsrc) {
+      Jmsg(jcr, M_INFO, 0, _("%d non-supported resource fork streams ignored.\n"), non_support_rsrc);
+   }
+   if (non_support_finfo) {
+      Jmsg(jcr, M_INFO, 0, _("%d non-supported Finder Info streams ignored.\n"), non_support_rsrc);
+   }
+   if (non_support_acl) {
+      Jmsg(jcr, M_INFO, 0, _("%d non-supported acl streams ignored.\n"), non_support_acl);
+   }
+
+}
 
 #ifdef HAVE_LIBZ
 /*
  * Convert ZLIB error code into an ASCII message
  */
-static char *zlib_strerror(int stat)
+static const char *zlib_strerror(int stat)
 {
    if (stat >= 0) {
       return "None";